helly Thu Mar 16 00:53:58 2006 UTC
Modified files:
/php-src/main/streams streams.c
Log:
- Fix warning
http://cvs.php.net/viewcvs.cgi/php-src/main/streams/streams.c?r1=1.104&r2=1.105&diff_format=u
Index: php-src/main/streams/streams.c
diff -u php-src/main/streams/streams.c:1.104
php-src/main/streams/streams.c:1.105
--- php-src/main/streams/streams.c:1.104 Wed Mar 15 21:18:36 2006
+++ php-src/main/streams/streams.c Thu Mar 16 00:53:58 2006
@@ -19,7 +19,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: streams.c,v 1.104 2006/03/15 21:18:36 pollita Exp $ */
+/* $Id: streams.c,v 1.105 2006/03/16 00:53:58 helly Exp $ */
#define _GNU_SOURCE
#include "php.h"
@@ -1236,7 +1236,7 @@
} else {
UErrorCode status = U_ZERO_ERROR;
char *t = freeme;
- UChar *p = buf_orig.u;
+ const UChar *p = buf_orig.u;
switch (ucnv_getType(stream->output_encoding)) {
case UCNV_SBCS:
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php