]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
my gcc (Ubuntu 4.3.2-1ubuntu11) 4.3.2 didn't like the \%ld and issued a warning,...
authorSteve Murphy <murf@digium.com>
Wed, 28 Jan 2009 21:48:37 +0000 (21:48 +0000)
committerSteve Murphy <murf@digium.com>
Wed, 28 Jan 2009 21:48:37 +0000 (21:48 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@172099 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_misdn.c

index d3c46514aa792d03323767902c0d2ecb8c333f17..a74de7c394ca6fb17ce34b2137a4ffb15b4fb5ca 100644 (file)
@@ -5493,7 +5493,7 @@ static int misdn_facility_exec(struct ast_channel *chan, void *data)
                }
 
                if (strlen(args.arg[0]) >= sizeof(ch->bc->fac_out.u.CDeflection.DeflectedToNumber)) {
-                       ast_log(LOG_WARNING, "Facility: Number argument too long (up to %ld digits are allowed). Ignoring.\n", sizeof(ch->bc->fac_out.u.CDeflection.DeflectedToNumber));
+                       ast_log(LOG_WARNING, "Facility: Number argument too long (up to %d digits are allowed). Ignoring.\n", sizeof(ch->bc->fac_out.u.CDeflection.DeflectedToNumber));
                        return 0;
                }
                ch->bc->fac_out.Function = Fac_CD;