The check for GCC <= 2 was in the wrong part of an #ifdef sequence.
authorWayne Davison <wayned@samba.org>
Thu, 12 Apr 2007 02:37:31 +0000 (02:37 +0000)
committerWayne Davison <wayned@samba.org>
Thu, 12 Apr 2007 02:37:31 +0000 (02:37 +0000)
rsync.h

diff --git a/rsync.h b/rsync.h
index 6b25e6c..d947895 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -779,6 +779,7 @@ typedef struct {
 
 #ifndef __GNUC__
 #define __attribute__(x)
+#else
 # if __GNUC__ <= 2
 # define NORETURN
 # endif