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-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/1b896f8d1e5ba86bfcadf9ef68ad1453e48e5fb9 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