[asterisk-commits] tilghman: branch 1.4 r86787 - /branches/1.4/main/astmm.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Oct 22 12:38:14 CDT 2007


Author: tilghman
Date: Mon Oct 22 12:38:13 2007
New Revision: 86787

URL: http://svn.digium.com/view/asterisk?view=rev&rev=86787
Log:
Minor FreeBSD build fix

Modified:
    branches/1.4/main/astmm.c

Modified: branches/1.4/main/astmm.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/astmm.c?view=diff&rev=86787&r1=86786&r2=86787
==============================================================================
--- branches/1.4/main/astmm.c (original)
+++ branches/1.4/main/astmm.c Mon Oct 22 12:38:13 2007
@@ -473,7 +473,7 @@
 		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);
 	}
 }




More information about the asterisk-commits mailing list