From 9ccab685db52afcd9888a8da017e840c9172203c Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Mon, 9 Jul 2007 09:08:52 +0000 Subject: [PATCH] use correct types for scale and precision --- ext/oci8/php_oci8_int.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/oci8/php_oci8_int.h b/ext/oci8/php_oci8_int.h index 56101330f9..5ae6e5db0c 100644 --- a/ext/oci8/php_oci8_int.h +++ b/ext/oci8/php_oci8_int.h @@ -224,8 +224,8 @@ typedef struct { /* php_oci_out_column {{{ */ php_oci_define *define; /* define handle */ int piecewise; /* column is fetched piece-by-piece */ ub4 cb_retlen; /* */ - ub2 scale; /* column scale */ - ub2 precision; /* column precision */ + sb1 scale; /* column scale */ + sb2 precision; /* column precision */ ub1 charset_form; /* charset form, required for NCLOBs */ ub2 charset_id; /* charset ID */ } php_oci_out_column; /* }}} */ -- 2.50.1