From: Timo Kokkonen Date: Sun, 15 Aug 2010 16:36:07 +0000 (+0300) Subject: utils.h: Fix coding conventions X-Git-Url: http://git.itanic.dy.fi/?p=scan-pagemap;a=commitdiff_plain;h=db2de963ac71a23e90635240b94eff8ceba7593b utils.h: Fix coding conventions These were reported by checkpatch.pl Signed-off-by: Timo Kokkonen --- diff --git a/utils.h b/utils.h index 6c9a272..cd54488 100644 --- a/utils.h +++ b/utils.h @@ -3,8 +3,8 @@ #include -#define MAX(a,b) ((a) > (b) ? (a) : (b)) -#define MIN(a,b) ((a) < (b) ? (a) : (b)) +#define MAX(a, b) ((a) > (b) ? (a) : (b)) +#define MIN(a, b) ((a) < (b) ? (a) : (b)) /** * container_of - cast a member of a structure out to the containing structure