We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2deea1b commit 43b4560Copy full SHA for 43b4560
s_mp_fprintf.c
@@ -9,6 +9,13 @@
9
#include <string.h>
10
11
12
+#ifdef _MSC_VER
13
+/* Ignore warning: "'fprintf' : format string expected in argument 2 is not a string"
14
+ because that's how this function works in the first place */
15
+#pragma warning(disable: 4774)
16
+#endif
17
+
18
19
/* Step to the next character, throw error if there is none */
20
#define LTM_NEXT_ERROR(x) do{(x)++;if(*(x) == '\0'){goto LTM_ERR;}}while(0)
21
/* Step to the next character, got to end if there is none */
0 commit comments