summaryrefslogtreecommitdiff
path: root/ext/icap/php_icap.c
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-05-13 09:36:33 +0000
committerSascha Schumann <sas@php.net>2000-05-13 09:36:33 +0000
commit654b75694a30d07e39d7c6b34ea2d4130179eef7 (patch)
treeb2e9bd3b84012163497391b876cbeb0b2869ff5b /ext/icap/php_icap.c
parentdc6d46c180390620efe9c994b00c71fb1837c67e (diff)
downloadphp-git-654b75694a30d07e39d7c6b34ea2d4130179eef7.tar.gz
Do not use non-standard type u_int32_t.
Instead, use UINT4 for now which is platform-independent. PR: #4262
Diffstat (limited to 'ext/icap/php_icap.c')
-rw-r--r--ext/icap/php_icap.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/icap/php_icap.c b/ext/icap/php_icap.c
index 28d3aa56f4..5335a93636 100644
--- a/ext/icap/php_icap.c
+++ b/ext/icap/php_icap.c
@@ -51,6 +51,7 @@
#include "php_icap.h"
#include "modules.h"
#include "ext/standard/info.h"
+#include "ext/standard/global.h"
#if (WIN32|WINNT)
#include "winsock.h"
#endif
@@ -67,7 +68,7 @@ typedef struct php_icap_le_struct {
typedef struct cal_list
{
-u_int32_t uid;
+UINT4 uid;
struct cal_list *next;
} cal_list_t;
@@ -904,7 +905,7 @@ void cc_searched (unsigned long cal_uid)
}
-void cc_appended(u_int32_t uid)
+void cc_appended(UINT4 uid)
{
}