abies Thu Sep 11 04:50:31 2003 EDT Modified files: /php-src/ext/interbase interbase.c Log: Changed unsigned ISC_LONG to ISC_LONG # Build fix for FB 1.5 Index: php-src/ext/interbase/interbase.c diff -u php-src/ext/interbase/interbase.c:1.177 php-src/ext/interbase/interbase.c:1.178 --- php-src/ext/interbase/interbase.c:1.177 Sun Sep 7 15:59:55 2003 +++ php-src/ext/interbase/interbase.c Thu Sep 11 04:50:30 2003 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: interbase.c,v 1.177 2003/09/07 19:59:55 abies Exp $ */ +/* $Id: interbase.c,v 1.178 2003/09/11 08:50:30 abies Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -26,7 +26,7 @@ #include "php.h" -#define FILE_REVISION "$Revision: 1.177 $" +#define FILE_REVISION "$Revision: 1.178 $" #if HAVE_IBASE && !defined(VERSION_INFO_ONLY) @@ -325,7 +325,7 @@ 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;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php