missed a line tox to toxav

pull/1527/head
Gregory Mullen (GrayHatter) 2016-02-13 20:50:01 -08:00
parent 96bf594be5
commit ea21a541ff
1 changed files with 1 additions and 1 deletions

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 */
(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 */
)
)
}