Skip to content

Commit c2530aa

Browse files
committed
fix whitespaces non-synced changes
1 parent a212a02 commit c2530aa

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

ext/date/lib/parse_date.re

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,6 @@ static timelib_ull timelib_get_signed_nr(Scanner *s, const char **ptr, int max_l
555555
int len = 0;
556556

557557
/* Skip over non-numeric chars */
558-
559558
while (((**ptr < '0') || (**ptr > '9')) && (**ptr != '+') && (**ptr != '-')) {
560559
if (**ptr == '\0') {
561560
add_error(s, TIMELIB_ERR_UNEXPECTED_DATA, "Found unexpected data");
@@ -569,6 +568,7 @@ static timelib_ull timelib_get_signed_nr(Scanner *s, const char **ptr, int max_l
569568
str[0] = '+'; /* First position is the sign */
570569
str_ptr = str + 1;
571570

571+
572572
while ((**ptr == '+') || (**ptr == '-')) {
573573
if (**ptr == '-') {
574574
str[0] = str[0] == '+' ? '-' : '+';

ext/date/lib/timelib_private.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@
135135
#ifndef TIMELIB_HAVE_BUILTIN_SADDLL_OVERFLOW
136136
# define TIMELIB_HAVE_BUILTIN_SADDLL_OVERFLOW 0
137137
#endif
138+
138139
struct _ttinfo
139140
{
140141
int32_t offset;

0 commit comments

Comments
 (0)