~foxtrotgps-team/foxtrotgps/trunk

« back to all changes in this revision

Viewing changes to src/hrm_functions.c

  • Committer: Paul Wise
  • Date: 2018-03-06 03:32:21 UTC
  • Revision ID: pabs3@bonedaddy.net-20180306033221-lzyia8y0cpw95j1b
Remove trailing whitespace

Show diffs side-by-side

added added

removed removed

Lines of Context:
233
233
get_hrm_data()
234
234
{
235
235
#ifdef HAVE_BLUEZ
236
 
#if GLIB_CHECK_VERSION(2,34,0)
237
 
        g_thread_new("get hrm thread", &get_hrm_data_thread, (gpointer) NULL);
238
 
#else
239
236
        g_thread_create(&get_hrm_data_thread, NULL, FALSE, NULL);
240
 
#endif
241
237
#endif /* HAVE_BLUEZ */
242
238
}
243
239