From 9c6ef862eb3bc3aec88c33361aec59347670793e Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 17 May 2010 21:46:41 -0700 Subject: [PATCH] compiler: Fix SENTINEL macro in non-GCC case. --- src/libpspp/compiler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libpspp/compiler.h b/src/libpspp/compiler.h index d8b29e96..a7e91bfe 100644 --- a/src/libpspp/compiler.h +++ b/src/libpspp/compiler.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2006, 2009 Free Software Foundation, Inc. + Copyright (C) 2006, 2009, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -84,7 +84,7 @@ #if __GNUC__ > 3 #define SENTINEL(IDX) ATTRIBUTE ((sentinel(IDX))) #else -#define SENTINEL +#define SENTINEL(IDX) #endif #endif /* compiler.h */ -- 2.30.2