From 1b896f8d1e5ba86bfcadf9ef68ad1453e48e5fb9 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Thu, 12 Apr 2007 02:37:31 +0000 Subject: [PATCH] The check for GCC <= 2 was in the wrong part of an #ifdef sequence. --- rsync.h | 1 + 1 file changed, 1 insertion(+) 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 -- 2.34.1