Skip to content

Commit 397849c

Browse files
committed
stopped in the middle
1 parent 6febdbd commit 397849c

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

makefile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -197,15 +197,9 @@ c99:
197197
-e 's/(mp_i64)((mp_u64)1<<63)/INT64_MIN/g' \
198198
-e 's/(mp_i64)(((mp_u64)1<<63)-1)/INT64_MAX/g' \
199199
-e 's/((size_t)-1)/SIZE_MAX/g' \
200-
<<<<<<< HEAD
201-
-e 's/MP_\(PRI[ioux]64\)/\1/g' \
202-
||||||| constructed merge base
203-
-e 's/MP_\(PRI[iux]64\)/\1/g' \
204-
=======
205200
-e 's/__intmax_t/intmax_t/g' \
206201
-e 's/__uintmax_t/uintmax_t/g' \
207202
-e 's/MP_\(PRI[iuox]64\)/\1/g' \
208-
>>>>>>> Extended c89 handling
209203
-e 's/mp_u\([0-9][0-9]*\)/uint\1_t/g' \
210204
-e 's/mp_i\([0-9][0-9]*\)/int\1_t/g' \
211205
-e 's/MP_FUNCTION_NAME/__func__/g' \

s_mp_fprintf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/* Step to the next character, throw error if there is none */
2020
#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 */
21+
/* Step to the next character, go to end if there is none */
2222
#define LTM_NEXT(x) do{(x)++;if(*(x) == '\0')break;}while(0)
2323

2424
/* The size of the string "%..." is not very large */

0 commit comments

Comments
 (0)