From 672d262c170d21cad8e2b4bb1bd906a8d0df2fe8 Mon Sep 17 00:00:00 2001 From: Ron Pedde Date: Thu, 11 Nov 2004 18:47:25 +0000 Subject: [PATCH] fix typedefs for AMD64 --- src/mDNSClientAPI.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/mDNSClientAPI.h b/src/mDNSClientAPI.h index 62f0e0fc..10885e8b 100644 --- a/src/mDNSClientAPI.h +++ b/src/mDNSClientAPI.h @@ -23,6 +23,9 @@ Change History (most recent first): $Log$ +Revision 1.3 2004/11/11 18:47:25 rpedde +fix typedefs for AMD64 + Revision 1.2 2004/09/19 03:03:47 rpedde Jim Buzbee's ARM patches for NSLU2 @@ -489,8 +492,8 @@ typedef signed char mDNSs8; typedef unsigned char mDNSu8; typedef signed short mDNSs16; typedef unsigned short mDNSu16; -typedef signed long mDNSs32; -typedef unsigned long mDNSu32; +typedef signed int mDNSs32; +typedef unsigned int mDNSu32; // To enforce useful type checking, we make mDNSInterfaceID be a pointer to a dummy struct // This way, mDNSInterfaceIDs can be assigned, and compared with each other, but not with other types