Fix old-style-declaration warnings
[babeltrace.git] / logging / log.c
index 0d317f031c27774fc96ac4514e7dc7342d961f6a..8d166a3093054680b21317d007dcf1cf67a1a3c4 100644 (file)
@@ -539,7 +539,7 @@ STATIC_ASSERT(eol_sz_greater_than_zero, 0 < BT_LOG_EOL_SZ);
 STATIC_ASSERT(eol_sz_less_than_buf_sz, BT_LOG_EOL_SZ < BT_LOG_BUF_SZ);
 static const char c_hex[] = "0123456789abcdef";
 
-static char __thread logging_buf[4 * 4096];
+static __thread char logging_buf[4 * 4096];
 
 static INSTRUMENTED_CONST unsigned g_buf_sz = BT_LOG_BUF_SZ - BT_LOG_EOL_SZ;
 static INSTRUMENTED_CONST time_cb g_time_cb = time_callback;
This page took 0.023726 seconds and 4 git commands to generate.