diff options
Diffstat (limited to 'toxcore')
-rw-r--r-- | toxcore/Messenger.h | 2 | ||||
-rw-r--r-- | toxcore/tox.c | 2 | ||||
-rw-r--r-- | toxcore/tox.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/toxcore/Messenger.h b/toxcore/Messenger.h index 952aa436..42f0738c 100644 --- a/toxcore/Messenger.h +++ b/toxcore/Messenger.h | |||
@@ -415,7 +415,7 @@ int m_set_usertyping(Messenger *m, int friendnumber, uint8_t is_typing); | |||
415 | /* Get the typing status of a friend. | 415 | /* Get the typing status of a friend. |
416 | * | 416 | * |
417 | * returns 0 if friend is not typing. | 417 | * returns 0 if friend is not typing. |
418 | * returns -1 if friend is typing. | 418 | * returns 1 if friend is typing. |
419 | */ | 419 | */ |
420 | uint8_t m_get_istyping(Messenger *m, int friendnumber); | 420 | uint8_t m_get_istyping(Messenger *m, int friendnumber); |
421 | 421 | ||
diff --git a/toxcore/tox.c b/toxcore/tox.c index 3f2c1e92..362724fc 100644 --- a/toxcore/tox.c +++ b/toxcore/tox.c | |||
@@ -285,7 +285,7 @@ int tox_set_user_is_typing(Tox *tox, int friendnumber, uint8_t is_typing) | |||
285 | /* Get the typing status of a friend. | 285 | /* Get the typing status of a friend. |
286 | * | 286 | * |
287 | * returns 0 if friend is not typing. | 287 | * returns 0 if friend is not typing. |
288 | * returns -1 if friend is typing. | 288 | * returns 1 if friend is typing. |
289 | */ | 289 | */ |
290 | int tox_get_is_typing(Tox *tox, int friendnumber) | 290 | int tox_get_is_typing(Tox *tox, int friendnumber) |
291 | { | 291 | { |
diff --git a/toxcore/tox.h b/toxcore/tox.h index 0a4e80f7..72589142 100644 --- a/toxcore/tox.h +++ b/toxcore/tox.h | |||
@@ -292,7 +292,7 @@ int tox_set_user_is_typing(Tox *tox, int friendnumber, uint8_t is_typing); | |||
292 | /* Get the typing status of a friend. | 292 | /* Get the typing status of a friend. |
293 | * | 293 | * |
294 | * returns 0 if friend is not typing. | 294 | * returns 0 if friend is not typing. |
295 | * returns -1 if friend is typing. | 295 | * returns 1 if friend is typing. |
296 | */ | 296 | */ |
297 | int tox_get_is_typing(Tox *tox, int friendnumber); | 297 | int tox_get_is_typing(Tox *tox, int friendnumber); |
298 | 298 | ||