Skip to content

Commit

Permalink
Fix for 32-bit
Browse files Browse the repository at this point in the history
Else float will be used and and break type hinting
  • Loading branch information
remicollet authored Jan 10, 2024
1 parent 72c63e0 commit 5c6bd26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Log.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
define('PEAR_LOG_INFO', 6); /* Informational */
define('PEAR_LOG_DEBUG', 7); /* Debug-level messages */

define('PEAR_LOG_ALL', 0xffffffff); /* All messages */
define('PEAR_LOG_ALL', 0x7fffffff); /* All messages */
define('PEAR_LOG_NONE', 0x00000000); /* No message */

/* Log types for PHP's native error_log() function. */
Expand Down

0 comments on commit 5c6bd26

Please sign in to comment.