diff options
author | Sascha Schumann <sas@php.net> | 2000-11-02 15:47:02 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-11-02 15:47:02 +0000 |
commit | 43ff395b65234ebc606549720b24387ec5a79d06 (patch) | |
tree | e8dc1e802a3fbfca7fea3b38b229dd805eea89ba /main/php_logos.h | |
parent | 9866d899e926c971980fd13ccaa9ab5e83f17b90 (diff) | |
download | php-git-43ff395b65234ebc606549720b24387ec5a79d06.tar.gz |
Const'ify part of sapi_request_info.
query_string, post_data, path_translated, request_uri, auth_user,
auth_password and argv0 are modified, so they cannot become const.
Diffstat (limited to 'main/php_logos.h')
-rw-r--r-- | main/php_logos.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_logos.h b/main/php_logos.h index d079adf5df..54c61d2632 100644 --- a/main/php_logos.h +++ b/main/php_logos.h @@ -5,6 +5,6 @@ PHPAPI int php_register_info_logo(char *logo_string, char *mimetype, unsigned ch PHPAPI int php_unregister_info_logos(char *logo_string); int php_init_info_logos(void); int php_shutdown_info_logos(void); -int php_info_logos(char *logo_string); +int php_info_logos(const char *logo_string); #endif /* _PHP_LOGOS_H */ |