Fix compiler warning about inline function
authorHugo Villeneuve <hvilleneuve@addenergie.ca>
Fri, 14 Dec 2018 16:16:20 +0000 (11:16 -0500)
committerHugo Villeneuve <hvilleneuve@addenergie.ca>
Fri, 14 Dec 2018 16:25:27 +0000 (11:25 -0500)
src/common.h
src/hvclock.c

index 6faab9e..28be4ae 100644 (file)
@@ -26,7 +26,7 @@
 /* Returns TRUE if the first 'c' characters of strings 'a' and 'b' are equal. */
 #define STREQ_LEN(a, b, c) (strncmp((a), (b), (c)) == 0)
 
-inline void
+void
 ErrorLocation(const char *file, int line);
 
 #endif /* COMMON_H */
index f31a114..3c32428 100644 (file)
@@ -25,7 +25,7 @@
 #include "clock.h"
 #include "hvclock.h"
 
-inline void ErrorLocation(const char *file, int line)
+void ErrorLocation(const char *file, int line)
 {
        fprintf(stderr, "  Error in file \"%s\" at line #%d\n", file, line);
 }