From 4d90a54f244499151f1c2451d420c624524a3ba9 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Wed, 1 Dec 2010 14:47:25 +0100 Subject: [PATCH] Fix #define when using --disable-smartalloc --- bacula/src/lib/smartall.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/lib/smartall.h b/bacula/src/lib/smartall.h index 4a2f90a160..4973f4fa25 100644 --- a/bacula/src/lib/smartall.h +++ b/bacula/src/lib/smartall.h @@ -89,7 +89,7 @@ extern int sm_check_rtn(const char *fname, int lineno, bool bufdump); #define sm_static(x) #define sm_new_owner(a, b, c) #define sm_malloc(f, l, n) malloc(n) -#define sm_free(f,l n) free(n) +#define sm_free(f, l, n) free(n) #define sm_check(f, l, fl) #define sm_check_rtn(f, l, fl) 1 -- 2.39.2