aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/say.c b/say.c
index 0b363e2af..0a8aa7680 100755
--- a/say.c
+++ b/say.c
@@ -1990,7 +1990,7 @@ int ast_say_date_with_format_en(struct ast_channel *chan, time_t time, char *int
/* Between 21 and 29 - two sounds */
res = wait_file(chan,ints, "digits/20",lang);
if (!res) {
- snprintf(nextmsg,sizeof(nextmsg), "digits/%d", tm.tm_mday - 20);
+ snprintf(nextmsg,sizeof(nextmsg), "digits/h-%d", tm.tm_mday - 20);
res = wait_file(chan,ints,nextmsg,lang);
}
}