comparison arogue5/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
852 in_shell = TRUE; 852 in_shell = TRUE;
853 fflush(stdout); 853 fflush(stdout);
854 854
855 md_shellescape(); 855 md_shellescape();
856 856
857 printf(retstr); 857 printf("%s", retstr);
858 fflush(stdout); 858 fflush(stdout);
859 nonl(); 859 nonl();
860 noecho(); 860 noecho();
861 raw(); 861 raw();
862 keypad(cw,1); 862 keypad(cw,1);