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]");