commit 5a497543c8699402dbf3df9d818864775b09c5a9 parent 23a2be9a0c23ef614b6968cbddcc5e9ebef9536e Author: Bart Polot <bart@net.in.tum.de> Date: Wed, 19 Feb 2014 20:02:20 +0000 - limit message name width Diffstat:
| M | src/mesh/mesh_common.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mesh/mesh_common.c b/src/mesh/mesh_common.c @@ -314,7 +314,7 @@ GM_m2s (uint16_t m) sprintf(buf, "%u (UNKNOWN TYPE)", m); return buf; } - sprintf(buf, "%31s", t); + sprintf(buf, "{%22s}", t); return buf; } #else