diff options
author | Frank M. Kromann <fmk@php.net> | 2003-10-02 18:49:18 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2003-10-02 18:49:18 +0000 |
commit | 7c5bd1e180115f0e601529285cff6dbdac40d132 (patch) | |
tree | 365d6a1c90b3cff45385bd99101394c41665f5bc | |
parent | 3cb67f1719d6d294a9d127e14b901489de098644 (diff) | |
download | php-git-7c5bd1e180115f0e601529285cff6dbdac40d132.tar.gz |
Fixing type cast
-rw-r--r-- | ext/fbsql/php_fbsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fbsql/php_fbsql.c b/ext/fbsql/php_fbsql.c index 75dddca485..457853c760 100644 --- a/ext/fbsql/php_fbsql.c +++ b/ext/fbsql/php_fbsql.c @@ -2278,7 +2278,7 @@ void phpfbColumnAsString(PHPFBResult* result, int column, void* data , int* leng #ifdef FB_TinyInteger case FB_TinyInteger: { - short int v = *((short int*)data); + short int v = *((FBTinyInteger*)data); char b[128]; sprintf(b, "%d", v); phpfbestrdup(b, length, value); |