# HG changeset patch # User William Pitcock # Date 1191706607 18000 # Node ID cad078740bef6a924d74a38b4b0e01986331d5bc # Parent f527ac16f95e9fa50158d46f6ec0694744dc06fa remove old comment from BMP which is no longer relevant as we never pass NULL there anyway. diff -r f527ac16f95e -r cad078740bef src/audacious/skin.c --- a/src/audacious/skin.c Wed Oct 03 17:37:49 2007 +0200 +++ b/src/audacious/skin.c Sat Oct 06 16:36:47 2007 -0500 @@ -523,10 +523,10 @@ } if (!bmp_active_skin_load(path)) { - /* FIXME: Oddly, g_message() causes a crash if path is NULL on - * Solaris (see bug #165) */ - if (path) + if (path != NULL) g_message("Unable to load skin (%s), trying default...", path); + else + g_message("Skin not defined: trying default..."); /* can't load configured skin, retry with default */ if (!bmp_active_skin_load(BMP_DEFAULT_SKIN_PATH)) {