summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Muizelaar <jmuizelaar@mozilla.com>2009-06-17 14:22:44 -0400
committerJeff Muizelaar <jmuizelaar@mozilla.com>2009-06-17 14:22:44 -0400
commit591e11f23de2a02fa2e4298a9b30532c5da1a64e (patch)
treeaadee4cac55082cbfc2107f142835fad3d9f768d
parenteb5d0634451a145193224cb47adcb46da1a28da9 (diff)
Report the bogusness of profiles in dump-profile
-rw-r--r--dump-profile.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/dump-profile.c b/dump-profile.c
index 5844b38..c86b9bc 100644
--- a/dump-profile.c
+++ b/dump-profile.c
@@ -5,6 +5,9 @@ void dump_profile(qcms_profile *profile)
{
if (profile) {
printf(" rendering intent: %d\n", qcms_profile_get_rendering_intent(profile));
+ if (qcms_profile_is_bogus(profile)) {
+ printf(" bougs\n");
+ }
qcms_profile_release(profile);
} else {
printf("bad profile\n");