comparison src/xs_config.c @ 392:b09d74eb71e6

Working on getting STIL and SLDB using completely dynamically allocated structures. Indentation cleanups, etc.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 31 May 2006 10:02:00 +0000
parents b20300813b42
children f997b79a7251
comparison
equal deleted inserted replaced
391:3cc7455360ad 392:b09d74eb71e6
305 g_free(tmpStr); 305 g_free(tmpStr);
306 } 306 }
307 break; 307 break;
308 308
309 default: 309 default:
310 XSERR 310 xs_error
311 ("Internal: Unsupported setting type found while reading configuration file. Please report to author!\n"); 311 ("Internal: Unsupported setting type found while reading configuration file. Please report to author!\n");
312 break; 312 break;
313 } 313 }
314 } 314 }
315 315
370 xmms_cfg_write_string(cfgFile, XS_CONFIG_IDENT, xs_cfgtable[i].itemName, 370 xmms_cfg_write_string(cfgFile, XS_CONFIG_IDENT, xs_cfgtable[i].itemName,
371 *(gchar **) xs_cfgtable[i].itemData); 371 *(gchar **) xs_cfgtable[i].itemData);
372 break; 372 break;
373 373
374 default: 374 default:
375 XSERR 375 xs_error
376 ("Internal: Unsupported setting type found while writing configuration file. Please report to author!\n"); 376 ("Internal: Unsupported setting type found while writing configuration file. Please report to author!\n");
377 break; 377 break;
378 } 378 }
379 } 379 }
380 380