From e084d91b55b9690cd89a60823c0be66929fc6d78 Mon Sep 17 00:00:00 2001 From: atlaua Date: Thu, 3 Nov 2011 14:24:20 +0100 Subject: [PATCH] Resolved a todo in main.c --- src/main.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 57760d777..798f4f830 100644 --- a/src/main.c +++ b/src/main.c @@ -3544,7 +3544,11 @@ int main(int argc, char *argv[]) if (sdl_mod&(KMOD_CAPS)) strappend(uitext, " [CAP LOCKS]"); if (GRID_MODE) - sprintf(uitext, "%s [GRID: %d]", uitext, GRID_MODE); //TODO: Undefined behavior: variable is used as parameter and destination in sprintf(). + { + char gridtext[15]; + sprintf(gridtext, " [GRID: %d]", GRID_MODE); + strappend(uitext, gridtext); + } #ifdef INTERNAL if (vs) strappend(uitext, " [FRAME CAPTURE]");