summaryrefslogtreecommitdiff
path: root/main/php_logos.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/php_logos.c')
-rw-r--r--main/php_logos.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/php_logos.c b/main/php_logos.c
index 05c29152c7..c544d7fdf3 100644
--- a/main/php_logos.c
+++ b/main/php_logos.c
@@ -25,7 +25,7 @@
#include "SAPI.h"
typedef struct _php_info_logo {
- char *mimetype;
+ const char *mimetype;
int mimelen;
const unsigned char *data;
int size;
@@ -33,7 +33,7 @@ typedef struct _php_info_logo {
HashTable phpinfo_logo_hash;
-PHPAPI int php_register_info_logo(char *logo_string, char *mimetype, const unsigned char *data, int size)
+PHPAPI int php_register_info_logo(char *logo_string, const char *mimetype, const unsigned char *data, int size)
{
php_info_logo info_logo;