Skip to content

Commit 714c5f0

Browse files
committed
Fix [-Wundef] warning in Sysvmsg extension
1 parent 2df6482 commit 714c5f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/sysvmsg/php_sysvmsg.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#ifndef PHP_SYSVMSG_H
1818
#define PHP_SYSVMSG_H
1919

20-
#if HAVE_SYSVMSG
20+
#ifdef HAVE_SYSVMSG
2121

2222
extern zend_module_entry sysvmsg_module_entry;
2323
#define phpext_sysvmsg_ptr &sysvmsg_module_entry

0 commit comments

Comments
 (0)