From: Lennart Poettering Date: Wed, 17 Jun 2009 01:06:13 +0000 (+0200) Subject: version: fix prefix in PA_CHECK_VERSION macro X-Git-Tag: submit/2.0-panda/20130828.192557~1720 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26d5f28f8a53b9b11280eeda42de80d7e06072e9;p=profile%2Fivi%2Fpulseaudio-panda.git version: fix prefix in PA_CHECK_VERSION macro --- diff --git a/src/pulse/version.h.in b/src/pulse/version.h.in index 3143e98..c2c1f20 100644 --- a/src/pulse/version.h.in +++ b/src/pulse/version.h.in @@ -64,8 +64,8 @@ const char* pa_get_library_version(void); * newer than the specified. \since 0.9.16 */ #define PA_CHECK_VERSION(major,minor,micro) \ ((PA_MAJOR > (major)) || \ - (PA_MAJOR == (major) && CA_MINOR > (minor)) || \ - (PA_MAJOR == (major) && CA_MINOR == (minor) && CA_MICRO >= (micro))) + (PA_MAJOR == (major) && PA_MINOR > (minor)) || \ + (PA_MAJOR == (major) && PA_MINOR == (minor) && PA_MICRO >= (micro))) PA_C_DECL_END