diff options
author | James Booth <boothj5@gmail.com> | 2015-08-26 01:48:21 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-08-26 01:48:21 +0100 |
commit | 5e962fe0f5ada7b07911de44a0edbae385d1e27a (patch) | |
tree | 3c63ed3c95a6be58c04a4e3b95e032992857cdde | |
parent | 35239ee31998580d95b99c62abfb3d3f00c20453 (diff) | |
download | profani-tty-5e962fe0f5ada7b07911de44a0edbae385d1e27a.tar.gz |
Fixed compile when no OTR or PGP support
-rw-r--r-- | src/event/client_events.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/client_events.c b/src/event/client_events.c index f8df6bf4..56723f40 100644 --- a/src/event/client_events.c +++ b/src/event/client_events.c @@ -148,7 +148,7 @@ cl_ev_send_msg(ProfChatWin *chatwin, const char * const msg) #ifndef HAVE_LIBGPGME char *id = message_send_chat(chatwin->barejid, msg); chat_log_msg_out(chatwin->barejid, msg); - ui_outgoing_chat_msg(chatwin, msg, id, PROF_ENC_NONE; + ui_outgoing_chat_msg(chatwin, msg, id, PROF_ENC_NONE); free(id); return; #endif |