Report the bogusness of profiles in dump-profile
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 @@
 {
 	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");