aboutsummaryrefslogtreecommitdiffstats
path: root/dumpcap.c
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2006-01-03 23:43:24 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2006-01-03 23:43:24 +0000
commitf0e0de41df5249db1ceded5f51471ca1115830fa (patch)
treee8ee0fd7afe460383a24d2b25498b91bba95c33c /dumpcap.c
parent3a4a5d182761b56303252f354623d7ea6067afd4 (diff)
__attribute__ noreturn can only be used in function declations.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16938 f5534014-38df-0310-8fa8-9805f1628bb7
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