compiler: Fix SENTINEL macro in non-GCC case.
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 18 May 2010 04:46:41 +0000 (21:46 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 18 May 2010 04:46:41 +0000 (21:46 -0700)
src/libpspp/compiler.h

index d8b29e968965eaa4c96744928f1b92640cb32cf8..a7e91bfec1f805b35c8f2c6d15608fcf556bbc68 100644 (file)
@@ -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 */