summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThies C. Arntzen <thies@php.net>2000-08-16 15:23:05 +0000
committerThies C. Arntzen <thies@php.net>2000-08-16 15:23:05 +0000
commitffad41019ebc74b1fbbfad3f87c4b97bb1c7af1b (patch)
tree42ea664befe630df6ca443c0c6f3d33fadc8cdcb
parent41360c24b65826210bc2c3fda8c91d67d6956df6 (diff)
downloadphp-git-ffad41019ebc74b1fbbfad3f87c4b97bb1c7af1b.tar.gz
compile fix
-rw-r--r--ext/oci8/oci8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c
index 765af87129..2d0142f2eb 100644
--- a/ext/oci8/oci8.c
+++ b/ext/oci8/oci8.c
@@ -1593,7 +1593,7 @@ oci_loadlob(oci_connection *connection, oci_descriptor *mydescr, char **buffer,u
mydescr->ocidescr,
&readlen, /* IN/OUT bytes toread/read */
siz + 1, /* offset (starts with 1) */
- (dvoid *) buf + siz,
+ (dvoid *) ((char *) buf + siz),
readlen, /* size of buffer */
(dvoid *)0,
(OCICallbackLobRead) 0, /* callback... */