From 1c701badce280d8de92a5314881824725deec1e6 Mon Sep 17 00:00:00 2001 From: Shehjar Tikoo Date: Thu, 19 Feb 2009 02:26:40 -0800 Subject: Fix the order of CALLOC() args Fix the order of CALLOC arguments. Signed-off-by: Shehjar Tikoo Signed-off-by: Anand V. Avati --- libglusterfs/src/mem-pool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libglusterfs/src/mem-pool.h') diff --git a/libglusterfs/src/mem-pool.h b/libglusterfs/src/mem-pool.h index b36c24477ed..7044d738563 100644 --- a/libglusterfs/src/mem-pool.h +++ b/libglusterfs/src/mem-pool.h @@ -25,7 +25,7 @@ #define MALLOC(size) malloc(size) -#define CALLOC(size,cnt) calloc(size,cnt) +#define CALLOC(cnt,size) calloc(cnt,size) #define FREE(ptr) \ if (ptr != NULL) { \ -- cgit