use g_printerr() instead of g_warning(), the problem is by no means fatal

This commit is contained in:
Sven Neumann
2004-07-13 10:29:14 +00:00
parent f274dce25b
commit 673e4b45f7

View File

@ -122,14 +122,14 @@ gimp_g_value_get_memsize (GValue *value)
}
else
{
g_warning ("%s: unhandled boxed value type: %s",
G_STRFUNC, G_VALUE_TYPE_NAME (value));
g_printerr ("%s: unhandled boxed value type: %s\n",
G_STRFUNC, G_VALUE_TYPE_NAME (value));
}
}
else if (G_VALUE_HOLDS_OBJECT (value))
{
g_warning ("%s: unhandled object value type: %s",
G_STRFUNC, G_VALUE_TYPE_NAME (value));
g_printerr ("%s: unhandled object value type: %s\n",
G_STRFUNC, G_VALUE_TYPE_NAME (value));
}
return memsize;