missed a line tox to toxav

This commit is contained in:
Gregory Mullen (GrayHatter) 2016-02-13 20:50:01 -08:00
parent 96bf594be5
commit ea21a541ff

View File

@ -123,7 +123,7 @@ bool toxav_version_is_compatible(uint32_t major, uint32_t minor, uint32_t patch)
{ {
return (TOXAV_VERSION_MAJOR == major && /* Force the major version */ return (TOXAV_VERSION_MAJOR == major && /* Force the major version */
(TOXAV_VERSION_MINOR > minor || /* Current minor version must be newer than requested -- or -- */ (TOXAV_VERSION_MINOR > minor || /* Current minor version must be newer than requested -- or -- */
(TOXAV_VERSION_MINOR == minor && TOX_VERSION_PATCH >= patch) /* the patch must be the same or newer */ (TOXAV_VERSION_MINOR == minor && TOXAV_VERSION_PATCH >= patch) /* the patch must be the same or newer */
) )
) )
} }