Added workaround for the solaris-printf behaviour.

This commit is contained in:
Simon Budig 2009-11-05 10:55:00 +01:00
parent c073804733
commit 68e1605666
1 changed files with 2 additions and 2 deletions

View File

@ -290,8 +290,8 @@ gimp_tag_cache_add_object (GimpTagCache *cache,
if (rec->checksum == checksum_quark)
{
g_printerr ("remapping identifier: %s ==> %s\n",
g_quark_to_string (rec->identifier),
g_quark_to_string (identifier_quark));
rec->identifier ? g_quark_to_string (rec->identifier) : "(NULL)",
identifier_quark ? g_quark_to_string (identifier_quark) : "(NULL)");
rec->identifier = identifier_quark;
for (list = rec->tags; list; list = g_list_next (list))