mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
version: fix prefix in PA_CHECK_VERSION macro
This commit is contained in:
parent
d9939690ed
commit
26d5f28f8a
1 changed files with 2 additions and 2 deletions
|
|
@ -64,8 +64,8 @@ const char* pa_get_library_version(void);
|
||||||
* newer than the specified. \since 0.9.16 */
|
* newer than the specified. \since 0.9.16 */
|
||||||
#define PA_CHECK_VERSION(major,minor,micro) \
|
#define PA_CHECK_VERSION(major,minor,micro) \
|
||||||
((PA_MAJOR > (major)) || \
|
((PA_MAJOR > (major)) || \
|
||||||
(PA_MAJOR == (major) && CA_MINOR > (minor)) || \
|
(PA_MAJOR == (major) && PA_MINOR > (minor)) || \
|
||||||
(PA_MAJOR == (major) && CA_MINOR == (minor) && CA_MICRO >= (micro)))
|
(PA_MAJOR == (major) && PA_MINOR == (minor) && PA_MICRO >= (micro)))
|
||||||
|
|
||||||
PA_C_DECL_END
|
PA_C_DECL_END
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue