From: Abramo Bagnara Date: Sat, 10 Mar 2001 18:13:59 +0000 (+0000) Subject: Attempt to fix incongruities between C++ preprocessor and C one for the same gcc... X-Git-Tag: v1.0.3~922 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=dc68485554174e8ca2e9df9938e922563b3f73a7;p=alsa-lib.git Attempt to fix incongruities between C++ preprocessor and C one for the same gcc version --- diff --git a/include/header.h b/include/header.h index e0a2ae2a..6bcca906 100644 --- a/include/header.h +++ b/include/header.h @@ -39,7 +39,7 @@ #define ATTRIBUTE_UNUSED __attribute__ ((__unused__)) #endif -#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) +#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 95) #define SNDERR(...) snd_lib_error(__FILE__, __LINE__, __FUNCTION__, 0, __VA_ARGS__) #define SYSERR(...) snd_lib_error(__FILE__, __LINE__, __FUNCTION__, errno, __VA_ARGS__) #else