comparison audacious/main.c @ 887:a8fb5974c3a9 trunk

[svn] * Skin thumbnails are refreshable!
author nhjm449
date Sun, 26 Mar 2006 13:51:07 -0800
parents c8cf439179b8
children 6afdd0d7e1e1
comparison
equal deleted inserted replaced
886:5a94062b9393 887:a8fb5974c3a9
367 return bmp_titlestring_presets[titlestring_preset]; 367 return bmp_titlestring_presets[titlestring_preset];
368 368
369 return cfg.gentitle_format; 369 return cfg.gentitle_format;
370 } 370 }
371 371
372 static void 372 void
373 make_directory(const gchar * path, mode_t mode) 373 make_directory(const gchar * path, mode_t mode)
374 { 374 {
375 if (mkdir(path, mode) == 0) 375 if (mkdir(path, mode) == 0)
376 return; 376 return;
377 377