aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_monitor.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-12-26 18:35:28 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-12-26 18:35:28 +0000
commitac9d70ac1281183d741ef1ecd8101a5eb5ee93fb (patch)
tree41d8725d44201cdf6c2486ce678b1b68e09a7227 /res/res_monitor.c
parentb759554372b15d07ea48224bca996e3245b30e0d (diff)
Merged revisions 7634 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r7634 | russell | 2005-12-26 13:19:12 -0500 (Mon, 26 Dec 2005) | 2 lines cast time_t to an int in printf/scanf (issue #5635) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@7635 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_monitor.c')
-rw-r--r--res/res_monitor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_monitor.c b/res/res_monitor.c
index d805788eb..660757b58 100644
--- a/res/res_monitor.c
+++ b/res/res_monitor.c
@@ -150,8 +150,8 @@ int ast_monitor_start( struct ast_channel *chan, const char *format_spec,
while((p = strchr(channel_name, '/'))) {
*p = '-';
}
- snprintf(monitor->filename_base, FILENAME_MAX, "%s/%ld-%s",
- ast_config_AST_MONITOR_DIR, time(NULL),channel_name);
+ snprintf(monitor->filename_base, FILENAME_MAX, "%s/%d-%s",
+ ast_config_AST_MONITOR_DIR, (int)time(NULL),channel_name);
monitor->filename_changed = 1;
} else {
ast_log(LOG_ERROR,"Failed to allocate Memory\n");