]> git.alsa-project.org Git - alsa-lib.git/commitdiff
Attempt to fix incongruities between C++ preprocessor and C one for the same gcc...
authorAbramo Bagnara <abramo@alsa-project.org>
Sat, 10 Mar 2001 18:13:59 +0000 (18:13 +0000)
committerAbramo Bagnara <abramo@alsa-project.org>
Sat, 10 Mar 2001 18:13:59 +0000 (18:13 +0000)
include/header.h

index e0a2ae2a7cf849c686a47ff915a22c0af6d51e9c..6bcca906dc34772d0403585b4ea7e11a7671b1de 100644 (file)
@@ -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