From 63810a1abb18b4e1b790a05d0ff4a01eff94107c Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Wed, 3 Sep 2014 14:00:14 +0000 Subject: [PATCH] scst.h: Fix definition of __aligned() git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@5762 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scst/include/scst.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scst/include/scst.h b/scst/include/scst.h index 339c32934..b47ce4b7e 100644 --- a/scst/include/scst.h +++ b/scst/include/scst.h @@ -86,7 +86,7 @@ typedef _Bool bool; #define __packed __attribute__((packed)) #endif #ifndef __aligned -#define __aligned __attribute__((aligned)) +#define __aligned(x) __attribute__((aligned(x))) #endif #endif