comparison xrogue/command.c @ 307:32bc72dcbf4f

Fix some warnings related to format strings.
author John "Elwin" Edwards
date Fri, 30 Apr 2021 20:48:30 -0400
parents e52a8a7ad4c5
children c03d0b87211c
comparison
equal deleted inserted replaced
306:057c5114e244 307:32bc72dcbf4f
1077 in_shell = TRUE; 1077 in_shell = TRUE;
1078 fflush(stdout); 1078 fflush(stdout);
1079 1079
1080 md_shellescape(); 1080 md_shellescape();
1081 1081
1082 printf(retstr); 1082 printf("%s", retstr);
1083 fflush(stdout); 1083 fflush(stdout);
1084 noecho(); 1084 noecho();
1085 crmode(); 1085 crmode();
1086 in_shell = FALSE; 1086 in_shell = FALSE;
1087 wait_for('\n'); 1087 wait_for('\n');