diff options
author | Ard Biesheuvel <abies@php.net> | 2003-09-11 08:50:30 +0000 |
---|---|---|
committer | Ard Biesheuvel <abies@php.net> | 2003-09-11 08:50:30 +0000 |
commit | c5b69dcb143833a6ecffbe47f19c709739d47c07 (patch) | |
tree | 7983b46c4c6a74b872341f5f57878c8d2d2f9a6d | |
parent | ef23b497d42826cf2230e29d6fc00ea143097b4d (diff) | |
download | php-git-c5b69dcb143833a6ecffbe47f19c709739d47c07.tar.gz |
Changed unsigned ISC_LONG to ISC_LONG
# Build fix for FB 1.5
-rw-r--r-- | ext/interbase/interbase.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/interbase/interbase.c b/ext/interbase/interbase.c index e0f4a852bf..4b6694bd26 100644 --- a/ext/interbase/interbase.c +++ b/ext/interbase/interbase.c @@ -325,7 +325,7 @@ static inline int _php_ibase_string_to_quad(char const *id, ISC_QUAD *qd) unsigned ISC_INT64 res; if (sscanf(id, BLOB_ID_MASK, &res)) { qd->gds_quad_high = (ISC_LONG) (res >> 0x20); - qd->gds_quad_low = (unsigned ISC_LONG) (res & 0xFFFFFFFF); + qd->gds_quad_low = (ISC_LONG) (res & 0xFFFFFFFF); return 1; } return 0; |