changeset 3695:cad078740bef

remove old comment from BMP which is no longer relevant as we never pass NULL there anyway.
author William Pitcock <nenolod@atheme.org>
date Sat, 06 Oct 2007 16:36:47 -0500
parents f527ac16f95e
children 418ac922ce87
files src/audacious/skin.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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)) {