changeset 246:14fcae5e6be5

changed to use the new memory wrappers (my caffeine free week is officially over!)
author mortenp
date Sat, 19 Jun 2004 13:47:58 +1000
parents 00eadc106b34
children 3cc76ae3c2f9
files include/mlmmj-maintd.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/include/mlmmj-maintd.h	Sat Jun 19 13:44:47 2004 +1000
+++ b/include/mlmmj-maintd.h	Sat Jun 19 13:47:58 2004 +1000
@@ -43,13 +43,13 @@
 #define WRITEMAINTLOG4( s1, s2, s3, s4 ) do { \
 		logstr = concatstr( s1, s2, s3, s4 ) ;\
 		writen(maintdlogfd, logstr, strlen(logstr)); \
-		free(logstr); \
+		myfree(logstr); \
 		} while (0);
 
 #define WRITEMAINTLOG6( s1, s2, s3, s4, s5, s6 ) do { \
 		logstr = concatstr( s1, s2, s3, s4, s5, s6 ) ;\
 		writen(maintdlogfd, logstr, strlen(logstr)); \
-		free(logstr); \
+		myfree(logstr); \
 		} while (0);
 
 #endif /* MLMMJ_MAINTD_H */