Skip to content

Commit 29bfcd9

Browse files
committed
Fix 32bit builds
1 parent 8739a1f commit 29bfcd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bson.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ bool php_phongo_bson_visit_int64(const bson_iter_t *iter __attribute__((unused))
432432
#if SIZEOF_LONG == 4
433433
if (v_int64 > INT_MAX) {
434434
mongoc_log(MONGOC_LOG_LEVEL_ERROR, MONGOC_LOG_DOMAIN, "Integer overflow detected on your platform: %lld", v_int64);
435-
return false
435+
return false;
436436
}
437437
#endif
438438

0 commit comments

Comments
 (0)