From aaa2f1c30b3ba3da3e0030804054ee9c70e80bc7 Mon Sep 17 00:00:00 2001 From: Hartmut Holzgraefe Date: Thu, 14 Oct 2010 21:33:10 +0000 Subject: marked char pointer arguments as const in lots of places where strings pointed to are not modified to prevent compiler warnings about discarded qualifiers ... --- Zend/zend_modules.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Zend/zend_modules.h') diff --git a/Zend/zend_modules.h b/Zend/zend_modules.h index 32f29c09b7..fe3f4efa27 100644 --- a/Zend/zend_modules.h +++ b/Zend/zend_modules.h @@ -98,7 +98,7 @@ struct _zend_module_entry { unsigned char type; void *handle; int module_number; - char *build_id; + const char *build_id; }; #define MODULE_DEP_REQUIRED 1 -- cgit v1.2.1