fix typographical mistake in warning message
[collectd.git] / src / gps.c
index e43af4a..19f317c 100644 (file)
--- a/src/gps.c
+++ b/src/gps.c
@@ -239,7 +239,7 @@ static void cgps_submit (const char *type, gauge_t value, const char *type_insta
 /**
  * Read the data and submit by piece.
  */
-static int cgps_read ()
+static int cgps_read (void)
 {
   cgps_data_t data_copy;
 
@@ -285,14 +285,14 @@ static int cgps_config (oconfig_item_t *ci)
     cgps_config_data.timeout > TIME_T_TO_CDTIME_T(5)
     ||
     cgps_config_data.timeout < US_TO_CDTIME_T(500)
-  ) 
+  )
   {
-    WARNING ("gps plugin: timeout set to %.6f sec. setting to default (%.6f).", 
+    WARNING ("gps plugin: timeout set to %.6f sec. setting to default (%.6f).",
       CDTIME_T_TO_DOUBLE(cgps_config_data.timeout),
       CDTIME_T_TO_DOUBLE(CGPS_DEFAULT_TIMEOUT)
     );
     cgps_config_data.timeout = CGPS_DEFAULT_TIMEOUT;
-  } 
+  }
 
   return (0);
 }