summaryrefslogtreecommitdiff
path: root/apps/app_record.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-07-14 07:34:34 +0000
committerMark Spencer <markster@digium.com>2004-07-14 07:34:34 +0000
commit872685d0885ae3564660178706845faf43aaca64 (patch)
tree54b0d7240765bc43ef378f171a536e6bc7d206d9 /apps/app_record.c
parent4d32c4612623ecbff58f21286bc18d0000fe09aa (diff)
Merge rgagnon's pedantic string changes (apps n-z) (bug #2038)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3429 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_record.c')
-rwxr-xr-xapps/app_record.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_record.c b/apps/app_record.c
index 92b38b3b0..cd46d3e43 100755
--- a/apps/app_record.c
+++ b/apps/app_record.c
@@ -156,7 +156,7 @@ static int record_exec(struct ast_channel *chan, void *data)
create a new file with the inputed name scheme */
if (percentflag) {
do {
- snprintf(tmp, sizeof(tmp)-1, fil, count);
+ snprintf(tmp, sizeof(tmp), fil, count);
count++;
} while ( ast_fileexists(tmp, ext, chan->language) != -1 );
pbx_builtin_setvar_helper(chan, "RECORDED_FILE", tmp);