diff options
author | irungentoo <irungentoo@gmail.com> | 2013-08-08 14:15:00 -0700 |
---|---|---|
committer | irungentoo <irungentoo@gmail.com> | 2013-08-08 14:15:00 -0700 |
commit | cd730b532a628df69145bd561ab993b45010fd0f (patch) | |
tree | 2c46734d40b0bff9cb66d17cfa2c88a0ae8de1f7 | |
parent | eb7ac134db3eab42478eec90c02719eda7fcc87a (diff) | |
parent | 24bebf57d0b46cd4bade35b8637243505baf674a (diff) |
Merge pull request #403 from jin-eld/fix-friend-status-callback
Fix typo in function name which results in missing symbol
-rw-r--r-- | core/Messenger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Messenger.c b/core/Messenger.c index af4fd797..00f54cfa 100644 --- a/core/Messenger.c +++ b/core/Messenger.c | |||
@@ -504,7 +504,7 @@ void m_callback_read_receipt(void (*function)(int, uint32_t)) | |||
504 | 504 | ||
505 | static void (*friend_statuschange)(int, uint8_t); | 505 | static void (*friend_statuschange)(int, uint8_t); |
506 | static uint8_t friend_statuschange_isset = 0; | 506 | static uint8_t friend_statuschange_isset = 0; |
507 | void m_callback_friend_status(void (*function)(int, uint8_t)) | 507 | void m_callback_friendstatus(void (*function)(int, uint8_t)) |
508 | { | 508 | { |
509 | friend_statuschange = function; | 509 | friend_statuschange = function; |
510 | friend_statuschange_isset = 1; | 510 | friend_statuschange_isset = 1; |