aboutsummaryrefslogtreecommitdiff
path: root/src/util/common_logging.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-01-22 14:13:42 +0100
committerChristian Grothoff <christian@grothoff.org>2017-01-22 14:13:42 +0100
commit07bb7990c58e87d2dc73dbf74961722180e044cc (patch)
tree475ac4ac299e17d97064de49e0a6b33ab7a66d62 /src/util/common_logging.c
parent568dcc7b48238a0df22707dadb93f0f5b62c06b7 (diff)
downloadgnunet-07bb7990c58e87d2dc73dbf74961722180e044cc.tar.gz
gnunet-07bb7990c58e87d2dc73dbf74961722180e044cc.zip
fix buffer size
Diffstat (limited to 'src/util/common_logging.c')
-rw-r--r--src/util/common_logging.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/common_logging.c b/src/util/common_logging.c
index 1da406753..7d5b50b8b 100644
--- a/src/util/common_logging.c
+++ b/src/util/common_logging.c
@@ -1164,7 +1164,7 @@ GNUNET_h2s (const struct GNUNET_HashCode * hc)
1164const char * 1164const char *
1165GNUNET_sh2s (const struct GNUNET_ShortHashCode *shc) 1165GNUNET_sh2s (const struct GNUNET_ShortHashCode *shc)
1166{ 1166{
1167 static char buf[32]; 1167 static char buf[64];
1168 1168
1169 GNUNET_STRINGS_data_to_string (shc, 1169 GNUNET_STRINGS_data_to_string (shc,
1170 sizeof (*shc), 1170 sizeof (*shc),