summaryrefslogtreecommitdiff
path: root/toxcore/tox.c
diff options
context:
space:
mode:
authorGregory Mullen (GrayHatter) <greg@grayhatter.com>2016-02-13 20:53:30 -0800
committerGregory Mullen (GrayHatter) <greg@grayhatter.com>2016-02-13 20:53:30 -0800
commit9628f9d1711a096f771427e053443e908de365e4 (patch)
tree7bd816c4a09e4db019a66359ff122bb4ae2a2644 /toxcore/tox.c
parent58ebf7a5b6e006c656b6b704d149f391587f394d (diff)
added the dropped ;
Diffstat (limited to 'toxcore/tox.c')
-rw-r--r--toxcore/tox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxcore/tox.c b/toxcore/tox.c
index 677fd112..23d0d3e4 100644
--- a/toxcore/tox.c
+++ b/toxcore/tox.c
@@ -91,7 +91,7 @@ bool tox_version_is_compatible(uint32_t major, uint32_t minor, uint32_t patch)
91 (TOX_VERSION_MINOR > minor || /* Current minor version must be newer than requested -- or -- */ 91 (TOX_VERSION_MINOR > minor || /* Current minor version must be newer than requested -- or -- */
92 (TOX_VERSION_MINOR == minor && TOX_VERSION_PATCH >= patch) /* the patch must be the same or newer */ 92 (TOX_VERSION_MINOR == minor && TOX_VERSION_PATCH >= patch) /* the patch must be the same or newer */
93 ) 93 )
94 ) 94 );
95} 95}
96 96
97 97