Skip to content

Commit a9f3500

Browse files
committed
修复错误的预处理
1 parent 594e7df commit a9f3500

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/printf/printf.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169
#define FLAGS_SIGNED (1U << 14U)
170170
// Only used with PRINTF_SUPPORT_MSVC_STYLE_INTEGER_SPECIFIERS
171171

172-
#ifdef PRINTF_SUPPORT_MSVC_STYLE_INTEGER_SPECIFIERS
172+
#if PRINTF_SUPPORT_MSVC_STYLE_INTEGER_SPECIFIERS
173173

174174
#define FLAGS_INT8 FLAGS_CHAR
175175

@@ -1082,7 +1082,7 @@ static inline void format_string_loop(output_gadget_t* output, const char* forma
10821082

10831083
// evaluate length field
10841084
switch (*format) {
1085-
#ifdef PRINTF_SUPPORT_MSVC_STYLE_INTEGER_SPECIFIERS
1085+
#if PRINTF_SUPPORT_MSVC_STYLE_INTEGER_SPECIFIERS
10861086
case 'I' : {
10871087
ADVANCE_IN_FORMAT_STRING(format);
10881088
// Greedily parse for size in bits: 8, 16, 32 or 64

0 commit comments

Comments
 (0)