diff --git a/cde/lib/tt/lib/db/tt_db_property.h b/cde/lib/tt/lib/db/tt_db_property.h index 76062e13f..80e145f64 100644 --- a/cde/lib/tt/lib/db/tt_db_property.h +++ b/cde/lib/tt/lib/db/tt_db_property.h @@ -57,7 +57,7 @@ public: int i = 0; _Tt_string_list_cursor values_cursor(values); while (values_cursor.next()) { - if (*values_cursor != (char*)NULL) + if (*values_cursor != (const char*)NULL) fprintf(file, "Property Value #%d: %s\n", i, (char *)*values_cursor); else fprintf(file, "Property Value #%d: NULL\n", i); i++;