]> granicus.if.org Git - php/commitdiff
Changed unsigned ISC_LONG to ISC_LONG
authorArd Biesheuvel <abies@php.net>
Thu, 11 Sep 2003 08:50:30 +0000 (08:50 +0000)
committerArd Biesheuvel <abies@php.net>
Thu, 11 Sep 2003 08:50:30 +0000 (08:50 +0000)
# Build fix for FB 1.5

ext/interbase/interbase.c

index e0f4a852bfeda3c69df94b8fe8c7dd58d519e5c5..4b6694bd268fc4e6eb4488ff8c8552c98acf69c9 100644 (file)
@@ -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;