summaryrefslogtreecommitdiff
path: root/apps/app_read.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-04-29 17:00:33 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-04-29 17:00:33 +0000
commit8634ef9e4a57d128a295f1f114d2c97c32fa400c (patch)
treed331e5cecc9b0a3c2d3c3e29adbc134c1d3d0fe2 /apps/app_read.c
parentbef7a3ea37af59a729f83a4f4e2789761220d80f (diff)
don't use '%i' at all, since we have no current use cases that need non base-10 parsing (bug #4110)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5533 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_read.c')
-rwxr-xr-xapps/app_read.c2
1 files changed, 1 insertions, 1 deletions
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");