aboutsummaryrefslogtreecommitdiffstats
path: root/src/msgb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/msgb.c')
-rw-r--r--src/msgb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/msgb.c b/src/msgb.c
index 4edbdf34..fc5a9eb4 100644
--- a/src/msgb.c
+++ b/src/msgb.c
@@ -511,7 +511,7 @@ char *msgb_hexdump_buf(char *buf, size_t buf_len, const struct msgb *msg)
*/
const char *msgb_hexdump(const struct msgb *msg)
{
- static __thread char buf[4100];
+ static char buf[4100];
return msgb_hexdump_buf(buf, sizeof(buf), msg);
}