From 5d37dc5c4b38ecbb0e8e8dd83389c8b24fd3a089 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Wed, 3 Sep 2014 14:01:04 +0000 Subject: [PATCH] scst.h: Fix definition of __aligned() (merge r5762 from trunk) git-svn-id: http://svn.code.sf.net/p/scst/svn/branches/3.0.x@5763 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 7c55bb914..4a69a9691 100644 --- a/scst/include/scst.h +++ b/scst/include/scst.h @@ -79,7 +79,7 @@ typedef _Bool bool; #define __packed __attribute__((packed)) #endif #ifndef __aligned -#define __aligned __attribute__((aligned)) +#define __aligned(x) __attribute__((aligned(x))) #endif #endif