From: Mark Spencer Date: Thu, 8 May 2003 14:53:15 +0000 (+0000) Subject: Take out useless cast X-Git-Tag: 0.5.0~516 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=06101a43c83ff5430cb3bc0addb7e7b2316e80b7;p=thirdparty%2Fasterisk.git Take out useless cast git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@980 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/acl.c b/acl.c index 9f876c90aa..9c832ed4a4 100755 --- a/acl.c +++ b/acl.c @@ -41,7 +41,7 @@ struct ast_ha { }; /* Default IP - if not otherwise set, don't breathe garbage */ -static struct in_addr __ourip = { (in_addr_t)0x00000000 }; +static struct in_addr __ourip = { 0x00000000 }; struct my_ifreq { char ifrn_name[IFNAMSIZ]; /* Interface name, e.g. "eth0", "ppp0", etc. */