diff options
author | Antony Dovgal <tony2001@php.net> | 2004-01-26 15:25:32 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2004-01-26 15:25:32 +0000 |
commit | 83a1eaf75af23e38d4163c5f811fd9b474e71c18 (patch) | |
tree | eeca9faafb1e670b245521a53b5cc8135a67fd4f /ext/oci8 | |
parent | f64928bdce58b166c5ef92faddd4d42bda2dffe5 (diff) | |
download | php-git-83a1eaf75af23e38d4163c5f811fd9b474e71c18.tar.gz |
fix this annoying notice about limited range
Diffstat (limited to 'ext/oci8')
-rw-r--r-- | ext/oci8/oci8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index 6188ba5a26..53bb8b80e3 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -2649,7 +2649,7 @@ static oci_session *_oci_open_session(oci_server* server,char *username,char *pa ) ); - smart_str_append_long_ex(&hashed_details, charsetid, 1); + smart_str_append_unsigned(&hashed_details, charsetid); charsetid = 0; } |