aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-02-19 20:02:20 +0000
committerBart Polot <bart@net.in.tum.de>2014-02-19 20:02:20 +0000
commit5a497543c8699402dbf3df9d818864775b09c5a9 (patch)
tree116bebc565d0df39a72089199d56edfdd235d661 /src
parent23a2be9a0c23ef614b6968cbddcc5e9ebef9536e (diff)
downloadgnunet-5a497543c8699402dbf3df9d818864775b09c5a9.tar.gz
gnunet-5a497543c8699402dbf3df9d818864775b09c5a9.zip
- limit message name width
Diffstat (limited to 'src')
-rw-r--r--src/mesh/mesh_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesh/mesh_common.c b/src/mesh/mesh_common.c
index 2d9129ffa..eb8ad764b 100644
--- a/src/mesh/mesh_common.c
+++ b/src/mesh/mesh_common.c
@@ -314,7 +314,7 @@ GM_m2s (uint16_t m)
314 sprintf(buf, "%u (UNKNOWN TYPE)", m); 314 sprintf(buf, "%u (UNKNOWN TYPE)", m);
315 return buf; 315 return buf;
316 } 316 }
317 sprintf(buf, "%31s", t); 317 sprintf(buf, "{%22s}", t);
318 return buf; 318 return buf;
319} 319}
320#else 320#else