- Timestamp:
- 2007-11-22T22:56:52Z (17 years ago)
- Branches:
- master
- Children:
- df6d1da
- Parents:
- d75597b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/nogaim.c
rd75597b r56f260a 699 699 700 700 if( set_getbool( &ic->irc->set, "debug" ) ) 701 imcb_log( ic, "You were removed from conversation 0x%x", (int)c );701 imcb_log( ic, "You were removed from conversation %p", c ); 702 702 703 703 if( c ) … … 755 755 else 756 756 { 757 imcb_log( ic, "Message from/to conversation %s@ 0x%x (unknown conv/user): %s", who, (int)c, wrapped );757 imcb_log( ic, "Message from/to conversation %s@%p (unknown conv/user): %s", who, c, wrapped ); 758 758 } 759 759 g_free( wrapped ); … … 803 803 804 804 if( set_getbool( &ic->irc->set, "debug" ) ) 805 imcb_log( ic, "Creating new conversation: (id= 0x%x,handle=%s)", (int)c, handle );805 imcb_log( ic, "Creating new conversation: (id=%p,handle=%s)", c, handle ); 806 806 807 807 return c; … … 817 817 818 818 if( set_getbool( &b->ic->irc->set, "debug" ) ) 819 imcb_log( b->ic, "User %s added to conversation 0x%x", handle, (int)b );819 imcb_log( b->ic, "User %s added to conversation %p", handle, b ); 820 820 821 821 /* It might be yourself! */ … … 852 852 853 853 if( set_getbool( &b->ic->irc->set, "debug" ) ) 854 imcb_log( b->ic, "User %s removed from conversation 0x%x (%s)", handle, (int)b, reason ? reason : "" );854 imcb_log( b->ic, "User %s removed from conversation %p (%s)", handle, b, reason ? reason : "" ); 855 855 856 856 /* It might be yourself! */
Note: See TracChangeset
for help on using the changeset viewer.