Skip to content

Commit 5117e89

Browse files
committed
chore: remove newline to simplify diff even more
1 parent cb60adb commit 5117e89

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pandas/_libs/src/parser/tokenizer.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1897,13 +1897,11 @@ int64_t str_to_int64(const char *p_item, int64_t int_min, int64_t int_max,
18971897
const size_t str_len = strlen(p);
18981898
if (tsep != '\0' && memchr(p, tsep, str_len) != NULL) {
18991899
const int status = copy_string_without_char(buffer, p, str_len, tsep);
1900-
19011900
if (status != 0) {
19021901
// Word is too big, probably will cause an overflow
19031902
*error = ERROR_OVERFLOW;
19041903
return 0;
19051904
}
1906-
19071905
p = buffer;
19081906
}
19091907

@@ -1958,7 +1956,6 @@ uint64_t str_to_uint64(uint_state *state, const char *p_item, int64_t int_max,
19581956
const size_t str_len = strlen(p);
19591957
if (tsep != '\0' && memchr(p, tsep, str_len) != NULL) {
19601958
const int status = copy_string_without_char(buffer, p, str_len, tsep);
1961-
19621959
if (status != 0) {
19631960
// Word is too big, probably will cause an overflow
19641961
*error = ERROR_OVERFLOW;

0 commit comments

Comments
 (0)