Skip to content

Commit eb48595

Browse files
committed
Fix clang-format error
1 parent 33d247a commit eb48595

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BSON/UTCDateTime.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ static bool php_phongo_utcdatetime_init_from_date(php_phongo_utcdatetime_t* inte
103103
#if PHP_VERSION_ID >= 70200
104104
usec = (int64_t) floor(datetime_obj->time->us);
105105
#else
106-
usec = (int64_t) floor(datetime_obj->time->f * 1000000 + 0.5);
106+
usec = (int64_t) floor(datetime_obj->time->f * 1000000 + 0.5);
107107
#endif
108108

109109
intern->milliseconds = (sec * 1000) + (usec / 1000);

0 commit comments

Comments
 (0)