From: Wayne Davison Date: Thu, 12 Apr 2007 02:37:31 +0000 (+0000) Subject: The check for GCC <= 2 was in the wrong part of an #ifdef sequence. X-Git-Tag: v3.0.0pre1~332 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b896f8d1e5ba86bfcadf9ef68ad1453e48e5fb9;p=thirdparty%2Frsync.git The check for GCC <= 2 was in the wrong part of an #ifdef sequence. --- diff --git a/rsync.h b/rsync.h index 6b25e6c2..d947895a 100644 --- a/rsync.h +++ b/rsync.h @@ -779,6 +779,7 @@ typedef struct { #ifndef __GNUC__ #define __attribute__(x) +#else # if __GNUC__ <= 2 # define NORETURN # endif