summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Mullen (GrayHatter) <greg@grayhatter.com>2016-02-13 20:50:01 -0800
committerGregory Mullen (GrayHatter) <greg@grayhatter.com>2016-02-13 20:50:01 -0800
commitea21a541ff39570d87620d15e67e797e4fce0a2b (patch)
treeb54db6c102188ff06065a08a732d6ffdbd0d2841
parent96bf594be5bd3524d5fb437be1444f9772bea827 (diff)
missed a line tox to toxav
-rw-r--r--toxav/toxav.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxav/toxav.c b/toxav/toxav.c
index 7a883cf2..a8fbbede 100644
--- a/toxav/toxav.c
+++ b/toxav/toxav.c
@@ -123,7 +123,7 @@ bool toxav_version_is_compatible(uint32_t major, uint32_t minor, uint32_t patch)
123{ 123{
124 return (TOXAV_VERSION_MAJOR == major && /* Force the major version */ 124 return (TOXAV_VERSION_MAJOR == major && /* Force the major version */
125 (TOXAV_VERSION_MINOR > minor || /* Current minor version must be newer than requested -- or -- */ 125 (TOXAV_VERSION_MINOR > minor || /* Current minor version must be newer than requested -- or -- */
126 (TOXAV_VERSION_MINOR == minor && TOX_VERSION_PATCH >= patch) /* the patch must be the same or newer */ 126 (TOXAV_VERSION_MINOR == minor && TOXAV_VERSION_PATCH >= patch) /* the patch must be the same or newer */
127 ) 127 )
128 ) 128 )
129} 129}