Fix: common: add `void` parameter to log_add_time declaration
authorSimon Marchi <simon.marchi@efficios.com>
Wed, 25 Mar 2020 22:39:30 +0000 (18:39 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 6 Apr 2020 14:36:34 +0000 (10:36 -0400)
It makes it match the definition and fixes this warning:

      CC       error.lo
    /home/smarchi/src/lttng-tools/src/common/error.c:33:13: error: no previous prototype for ‘log_add_time’ [-Werror=missing-prototypes]
     const char *log_add_time(void)
                 ^~~~~~~~~~~~

Change-Id: Ibbf5eebd8171504bc7050c754e2a5d113b6b5387
Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/common/error.h

index 3fe742c02fe97bf85b792d989e7ab3e02352c1f2..d40145237c68e525889a277e06c3c466c6f8033d 100644 (file)
@@ -234,6 +234,6 @@ const char *error_get_str(int32_t code);
  * the caller. On error, an empty string is returned thus no time will be
  * printed in the log.
  */
-const char *log_add_time();
+const char *log_add_time(void);
 
 #endif /* _ERROR_H */
This page took 0.026008 seconds and 4 git commands to generate.