X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=logging%2Flog.c;h=8d166a3093054680b21317d007dcf1cf67a1a3c4;hb=c9fe7f23d9609caf13253debd50f10a820d8de8f;hp=0d317f031c27774fc96ac4514e7dc7342d961f6a;hpb=2f69c7e71eff0b5b313a6737f8744605e7a6ce7f;p=babeltrace.git diff --git a/logging/log.c b/logging/log.c index 0d317f03..8d166a30 100644 --- a/logging/log.c +++ b/logging/log.c @@ -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;