summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2009-04-20 08:41:39 +0000
committerPierre Joye <pajoye@php.net>2009-04-20 08:41:39 +0000
commitc7e0d95debaf217bc4997b617be561f456a56bdd (patch)
tree90b4e4078ed0cbfa438fb54702a3d676625c6ec8
parent70c96f788d4104f6e53faadbce566c1f2bf243e4 (diff)
downloadphp-git-c7e0d95debaf217bc4997b617be561f456a56bdd.tar.gz
- silent compiler warning
-rw-r--r--ext/standard/dns_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/dns_win32.c b/ext/standard/dns_win32.c
index 350f4e67eb..a78405df62 100644
--- a/ext/standard/dns_win32.c
+++ b/ext/standard/dns_win32.c
@@ -191,7 +191,7 @@ static void php_parserr(PDNS_RECORD pRec, int type_to_fetch, int store, zval **s
case DNS_TYPE_HINFO:
case DNS_TYPE_TEXT:
{
- int i = 0;
+ DWORD i = 0;
DNS_TXT_DATA *data_txt = &pRec->Data.TXT;
DWORD count = data_txt->dwStringCount;
char *txt, *txt_dst;