From 57c20bf83663c34156d62e56c721e446f5569c34 Mon Sep 17 00:00:00 2001 From: "Thies C. Arntzen" Date: Mon, 24 Apr 2000 12:35:30 +0000 Subject: [PATCH] fix warning --- ext/oci8/oci8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index d40becda3b9..584fa7fa5fe 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -2444,7 +2444,7 @@ PHP_FUNCTION(ocibindbyname) switch (ac) { case 5: convert_to_long_ex(type); - ocitype = (*type)->value.lval; + ocitype = (ub2) (*type)->value.lval; /* possible breakthru */ case 4: convert_to_long_ex(maxlen);