summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--toxav/toxav.c2
-rw-r--r--toxcore/tox.c2
-rw-r--r--toxencryptsave/toxencryptsave.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/toxav/toxav.c b/toxav/toxav.c
index a8fbbede..814c4f26 100644
--- a/toxav/toxav.c
+++ b/toxav/toxav.c
@@ -125,7 +125,7 @@ bool toxav_version_is_compatible(uint32_t major, uint32_t minor, uint32_t patch)
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 && TOXAV_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}
130 130
131ToxAV *toxav_new(Tox *tox, TOXAV_ERR_NEW *error) 131ToxAV *toxav_new(Tox *tox, TOXAV_ERR_NEW *error)
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
diff --git a/toxencryptsave/toxencryptsave.c b/toxencryptsave/toxencryptsave.c
index 800d5d11..bbe0422f 100644
--- a/toxencryptsave/toxencryptsave.c
+++ b/toxencryptsave/toxencryptsave.c
@@ -68,7 +68,7 @@ bool toxes_version_is_compatible(uint32_t major, uint32_t minor, uint32_t patch)
68 (TOXES_VERSION_MINOR > minor || /* Current minor version must be newer than requested -- or -- */ 68 (TOXES_VERSION_MINOR > minor || /* Current minor version must be newer than requested -- or -- */
69 (TOXES_VERSION_MINOR == minor && TOXES_VERSION_PATCH >= patch) /* the patch must be the same or newer */ 69 (TOXES_VERSION_MINOR == minor && TOXES_VERSION_PATCH >= patch) /* the patch must be the same or newer */
70 ) 70 )
71 ) 71 );
72} 72}
73 73
74/* Clients should consider alerting their users that, unlike plain data, if even one bit 74/* Clients should consider alerting their users that, unlike plain data, if even one bit