]> git.neil.brown.name Git - history.git/commitdiff
Quoth James: "Oops, mea culpa on that one. It's missing a trailing `__'
authorLinus Torvalds <torvalds@home.transmeta.com>
Tue, 31 Dec 2002 07:10:20 +0000 (23:10 -0800)
committerLinus Torvalds <torvalds@home.transmeta.com>
Tue, 31 Dec 2002 07:10:20 +0000 (23:10 -0800)
on the end of __GNUC_MINOR"

include/linux/compiler.h

index 99aab023173f9ef65890c774b4cb77e78f9f1dd8..70ed5ef37a4cbf20d4eedb9f27b5f505e68b64ab 100644 (file)
@@ -19,7 +19,7 @@
  * Usage is:
  *             int __deprecated foo(void)
  */
-#if ( __GNUC__ == 3 && __GNUC_MINOR > 0 ) || __GNUC__ > 3
+#if ( __GNUC__ == 3 && __GNUC_MINOR__ > 0 ) || __GNUC__ > 3
 #define __deprecated   __attribute__((deprecated))
 #else
 #define __deprecated