comparison libpurple/protocols/myspace/zap.c @ 19653:941965d6fd88

Patch from QuLogic. Fixes #2903 ('Missing newlines in debug messages.')
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 05 Sep 2007 22:33:22 +0000
parents 3f6f84d11ce2
children 44b4e8bd759b
comparison
equal deleted inserted replaced
19652:e21002d106ab 19653:941965d6fd88
124 124
125 /* Construct and send the actual zap command. */ 125 /* Construct and send the actual zap command. */
126 zap_string = g_strdup_printf("!!!ZAP_SEND!!!=RTE_BTN_ZAPS_%d", code); 126 zap_string = g_strdup_printf("!!!ZAP_SEND!!!=RTE_BTN_ZAPS_%d", code);
127 127
128 if (!msim_send_bm(session, username, zap_string, MSIM_BM_ACTION)) { 128 if (!msim_send_bm(session, username, zap_string, MSIM_BM_ACTION)) {
129 purple_debug_info("msim_send_zap_from_menu", "msim_send_bm failed: zapping %s with %s", 129 purple_debug_info("msim_send_zap_from_menu", "msim_send_bm failed: zapping %s with %s\n",
130 username, zap_string); 130 username, zap_string);
131 rc = FALSE; 131 rc = FALSE;
132 } else { 132 } else {
133 rc = TRUE; 133 rc = TRUE;
134 } 134 }