1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00

Fix [-Wundef] warning in Sysvshm extension

This commit is contained in:
George Peter Banyard
2020-05-16 15:53:28 +02:00
parent 046ff29958
commit 418bb5ebda
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@
#ifndef PHP_SYSVSHM_H
#define PHP_SYSVSHM_H
#if HAVE_SYSVSHM
#ifdef HAVE_SYSVSHM
extern zend_module_entry sysvshm_module_entry;
#define sysvshm_module_ptr &sysvshm_module_entry

View File

@@ -20,7 +20,7 @@
#include "php.h"
#if HAVE_SYSVSHM
#ifdef HAVE_SYSVSHM
#include <errno.h>