From: Eric Bollengier Date: Wed, 1 Dec 2010 13:47:25 +0000 (+0100) Subject: Fix #define when using --disable-smartalloc X-Git-Tag: Release-7.0.0~1266 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4d90a54f244499151f1c2451d420c624524a3ba9;p=bacula%2Fbacula Fix #define when using --disable-smartalloc --- 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