]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
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 6b25e6c24ef82996963828599cffbad7f7c9c7d6..d947895a2f1345c5c0894a98df643acba67c0959 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