mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
added the dropped ;
This commit is contained in:
parent
58ebf7a5b6
commit
9628f9d171
|
@ -125,7 +125,7 @@ bool toxav_version_is_compatible(uint32_t major, uint32_t minor, uint32_t patch)
|
||||||
(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 && TOXAV_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 */
|
||||||
)
|
)
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
ToxAV *toxav_new(Tox *tox, TOXAV_ERR_NEW *error)
|
ToxAV *toxav_new(Tox *tox, TOXAV_ERR_NEW *error)
|
||||||
|
|
|
@ -91,7 +91,7 @@ bool tox_version_is_compatible(uint32_t major, uint32_t minor, uint32_t patch)
|
||||||
(TOX_VERSION_MINOR > minor || /* Current minor version must be newer than requested -- or -- */
|
(TOX_VERSION_MINOR > minor || /* Current minor version must be newer than requested -- or -- */
|
||||||
(TOX_VERSION_MINOR == minor && TOX_VERSION_PATCH >= patch) /* the patch must be the same or newer */
|
(TOX_VERSION_MINOR == minor && TOX_VERSION_PATCH >= patch) /* the patch must be the same or newer */
|
||||||
)
|
)
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -68,7 +68,7 @@ bool toxes_version_is_compatible(uint32_t major, uint32_t minor, uint32_t patch)
|
||||||
(TOXES_VERSION_MINOR > minor || /* Current minor version must be newer than requested -- or -- */
|
(TOXES_VERSION_MINOR > minor || /* Current minor version must be newer than requested -- or -- */
|
||||||
(TOXES_VERSION_MINOR == minor && TOXES_VERSION_PATCH >= patch) /* the patch must be the same or newer */
|
(TOXES_VERSION_MINOR == minor && TOXES_VERSION_PATCH >= patch) /* the patch must be the same or newer */
|
||||||
)
|
)
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Clients should consider alerting their users that, unlike plain data, if even one bit
|
/* Clients should consider alerting their users that, unlike plain data, if even one bit
|
||||||
|
|
Loading…
Reference in New Issue
Block a user