aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/bee.h
diff options
context:
space:
mode:
authorAntoine Pietri <antoine.pietri@lrde.epita.fr>2015-03-01 22:10:47 +0100
committerAntoine Pietri <antoine.pietri@lrde.epita.fr>2015-03-01 22:13:12 +0100
commitce70e881ee478b9394b5187642484818b31eefdc (patch)
tree98a9b235ab218fc3007d0a9cc6e11431ef4ae442 /protocols/bee.h
parenta6b00fcae9af439133a342741e80463db994d620 (diff)
fix imcb_buddy_msg signature to take a const message
Diffstat (limited to 'protocols/bee.h')
-rw-r--r--protocols/bee.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/bee.h b/protocols/bee.h
index d90c3760..36ff2889 100644
--- a/protocols/bee.h
+++ b/protocols/bee.h
@@ -153,7 +153,7 @@ G_MODULE_EXPORT void imcb_buddy_status(struct im_connection *ic, const char *han
G_MODULE_EXPORT void imcb_buddy_status_msg(struct im_connection *ic, const char *handle, const char *message);
G_MODULE_EXPORT void imcb_buddy_times(struct im_connection *ic, const char *handle, time_t login, time_t idle);
/* Call when a handle says something. 'flags' and 'sent_at may be just 0. */
-G_MODULE_EXPORT void imcb_buddy_msg(struct im_connection *ic, const char *handle, char *msg, guint32 flags,
+G_MODULE_EXPORT void imcb_buddy_msg(struct im_connection *ic, const char *handle, const char *msg, guint32 flags,
time_t sent_at);
/* bee_chat.c */