Changeset 56f260a for storage_xml.c
- Timestamp:
- 2007-11-22T22:56:52Z (17 years ago)
- Branches:
- master
- Children:
- df6d1da
- Parents:
- d75597b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
storage_xml.c
rd75597b r56f260a 456 456 return TRUE on write errors. Which means, if we found 457 457 something, there was an error. :-) */ 458 if( g_hash_table_find( acc->nicks, xml_save_nick, (gpointer)fd ) )458 if( g_hash_table_find( acc->nicks, xml_save_nick, & fd ) ) 459 459 goto write_error; 460 460 … … 494 494 static gboolean xml_save_nick( gpointer key, gpointer value, gpointer data ) 495 495 { 496 return !xml_printf( (int) data, 2, "<buddy handle=\"%s\" nick=\"%s\" />\n", key, value );496 return !xml_printf( *( (int*) data ), 2, "<buddy handle=\"%s\" nick=\"%s\" />\n", key, value ); 497 497 } 498 498
Note: See TracChangeset
for help on using the changeset viewer.