aboutsummaryrefslogtreecommitdiffstats
path: root/main/astmm.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-22 17:40:29 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-22 17:40:29 +0000
commit8451f110520d2d9747dd8fc06cb6aaa8dddcc9c2 (patch)
tree2f11ab0fef53c24247f68c23f44504477eaed018 /main/astmm.c
parent8fc6314f5aedc52699ef98bd04ceb80e0b581723 (diff)
Merged revisions 86787 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r86787 | tilghman | 2007-10-22 12:38:13 -0500 (Mon, 22 Oct 2007) | 2 lines Minor FreeBSD build fix ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@86790 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/astmm.c')
-rw-r--r--main/astmm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/astmm.c b/main/astmm.c
index 2cf5325fb..0529a8f5f 100644
--- a/main/astmm.c
+++ b/main/astmm.c
@@ -475,7 +475,7 @@ void __ast_mm_init(void)
ast_verbose("Asterisk Malloc Debugger Started (see %s))\n", filename);
if ((mmlog = fopen(filename, "a+"))) {
- fprintf(mmlog, "%ld - New session\n", time(NULL));
+ fprintf(mmlog, "%ld - New session\n", (long)time(NULL));
fflush(mmlog);
}
}