diff options
author | Xinchen Hui <laruence@php.net> | 2012-04-21 09:31:00 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2012-04-21 09:31:00 +0800 |
commit | b999e91f5bd0f366d67f18badc02c910729e8a08 (patch) | |
tree | f2b52383d76e240fec1046f982b4cca510a2076b /sapi/cli/php_cli_server.c | |
parent | da85337d13075885f165eeed820181be20d397b9 (diff) | |
download | php-git-b999e91f5bd0f366d67f18badc02c910729e8a08.tar.gz |
Make css string constant
Diffstat (limited to 'sapi/cli/php_cli_server.c')
-rw-r--r-- | sapi/cli/php_cli_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli_server.c b/sapi/cli/php_cli_server.c index 105fd60af9..a3ed390508 100644 --- a/sapi/cli/php_cli_server.c +++ b/sapi/cli/php_cli_server.c @@ -276,7 +276,7 @@ ZEND_DECLARE_MODULE_GLOBALS(cli_server); /* {{{ static char php_cli_server_css[] * copied from ext/standard/info.c */ -static char php_cli_server_css[] = "<style type=\"text/css\">\n" \ +static const char php_cli_server_css[] = "<style type=\"text/css\">\n" \ "body {background-color: #ffffff; color: #000000;}\n" \ "body, td, th, h1, h2 {font-family: sans-serif;}\n" \ ".center {text-align: center;}\n" \ |