aboutsummaryrefslogtreecommitdiffstats
path: root/dumpcap.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2006-01-03 23:43:24 +0000
committerJörg Mayer <jmayer@loplof.de>2006-01-03 23:43:24 +0000
commit056c4085314cbc6880d68905f3b7c85e733c6a70 (patch)
treee8ee0fd7afe460383a24d2b25498b91bba95c33c /dumpcap.c
parent74dc6c2d5fa60092abf7d5934276c05d7c98e66c (diff)
__attribute__ noreturn can only be used in function declations.
svn path=/trunk/; revision=16938
Diffstat (limited to 'dumpcap.c')
-rw-r--r--dumpcap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dumpcap.c b/dumpcap.c
index 45eec628ee..4e7052e471 100644
--- a/dumpcap.c
+++ b/dumpcap.c
@@ -212,6 +212,7 @@ BOOL WINAPI ConsoleCtrlHandlerRoutine(DWORD dwCtrlType)
#if __GNUC__ >= 2
void exit_main(int err) __attribute__ ((noreturn));
+void exit_main(int err)
#else
void exit_main(int err)
#endif