diff options
author | Sam Ruby <rubys@php.net> | 2000-02-25 23:12:51 +0000 |
---|---|---|
committer | Sam Ruby <rubys@php.net> | 2000-02-25 23:12:51 +0000 |
commit | 937db8cc80f992afa211fcedfb292b40627980a8 (patch) | |
tree | 7a55d69e4c4dec799f5ae020391f0e0c66a3b3f5 /main | |
parent | 3f6e1be9da9744d768d96dbfe0fb3887645ba4bd (diff) | |
download | php-git-937db8cc80f992afa211fcedfb292b40627980a8.tar.gz |
Build failure on Win32:
error C2198: 'sapi_apply_default_charset' : too few actual parameters
Diffstat (limited to 'main')
-rw-r--r-- | main/SAPI.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/SAPI.c b/main/SAPI.c index 54ed0bc018..b5d4a54080 100644 --- a/main/SAPI.c +++ b/main/SAPI.c @@ -364,7 +364,7 @@ SAPI_API int sapi_add_header(char *header_line, uint header_line_len) ptr++; } mimetype = estrdup(ptr); - newlen = sapi_apply_default_charset(&mimetype, len); + newlen = sapi_apply_default_charset(&mimetype, len SLS_CC); if (newlen != 0) { newlen += sizeof("Content-type: "); newheader = emalloc(newlen); |