From: Ben Pfaff Date: Tue, 18 May 2010 04:46:41 +0000 (-0700) Subject: compiler: Fix SENTINEL macro in non-GCC case. X-Git-Tag: v0.7.5~25^2~2 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=9c6ef862eb3bc3aec88c33361aec59347670793e compiler: Fix SENTINEL macro in non-GCC case. --- 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 */