Skip to content

Commit 353a2d3

Browse files
author
Andi Gutmans
committed
Make error codes PHP 3.0 compatible
1 parent a064237 commit 353a2d3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Zend/zend_errors.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@
2121
#ifndef _ZEND_ERRORS_H
2222
#define _ZEND_ERRORS_H
2323

24-
#define E_CORE_ERROR (1<<0L)
25-
#define E_CORE_WARNING (1<<1L)
26-
#define E_COMPILE_ERROR (1<<2L)
27-
#define E_COMPILE_WARNING (1<<3L)
28-
#define E_PARSE (1<<4L)
29-
#define E_ERROR (1<<5L)
30-
#define E_WARNING (1<<6L)
31-
#define E_NOTICE (1<<7L)
24+
#define E_ERROR (1<<0L)
25+
#define E_WARNING (1<<1L)
26+
#define E_PARSE (1<<2L)
27+
#define E_NOTICE (1<<3L)
28+
#define E_CORE_ERROR (1<<4L)
29+
#define E_CORE_WARNING (1<<5L)
30+
#define E_COMPILE_ERROR (1<<6L)
31+
#define E_COMPILE_WARNING (1<<7L)
3232

3333
#define E_ALL (E_ERROR | E_WARNING | E_PARSE | E_NOTICE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING)
3434
#define E_CORE (E_CORE_ERROR | E_CORE_WARNING)
3535

36-
3736
#endif /* _ZEND_ERRORS_H */
37+

0 commit comments

Comments
 (0)