From b7e6d89aa23372a6a6d647bf6d3bfe3192e4c519 Mon Sep 17 00:00:00 2001 From: kpfleming Date: Fri, 29 Apr 2005 17:00:33 +0000 Subject: don't use '%i' at all, since we have no current use cases that need non base-10 parsing (bug #4110) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5533 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/app_read.c') diff --git a/apps/app_read.c b/apps/app_read.c index eaff923e9..d561c34d4 100755 --- a/apps/app_read.c +++ b/apps/app_read.c @@ -119,7 +119,7 @@ static int read_exec(struct ast_channel *chan, void *data) if ((maxdigits<1) || (maxdigits>255)) { maxdigits = 255; } else if (option_verbose > 2) - ast_verbose(VERBOSE_PREFIX_3 "Accepting a maximum of %i digits.\n", maxdigits); + ast_verbose(VERBOSE_PREFIX_3 "Accepting a maximum of %d digits.\n", maxdigits); } if (!(varname) || ast_strlen_zero(varname)) { ast_log(LOG_WARNING, "Invalid! Usage: Read(variable[|filename][|maxdigits][|option][|attempts][|timeout])\n\n"); -- cgit v1.2.3