Skip to content

Commit 9acbbdd

Browse files
committed
Whitespace
1 parent 3896638 commit 9acbbdd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/mysql2/client.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,11 +349,11 @@ static VALUE rb_connect(VALUE self, VALUE user, VALUE pass, VALUE host, VALUE po
349349
time(&end_time);
350350
/* avoid long connect timeout from system time changes */
351351
if (end_time < start_time)
352-
start_time = end_time;
352+
start_time = end_time;
353353
elapsed_time = end_time - start_time;
354354
/* avoid an early timeout due to time truncating milliseconds off the start time */
355355
if (elapsed_time > 0)
356-
elapsed_time--;
356+
elapsed_time--;
357357
if (elapsed_time >= wrapper->connect_timeout)
358358
break;
359359
connect_timeout = wrapper->connect_timeout - elapsed_time;

0 commit comments

Comments
 (0)