From 00c84f77046cec9a3ef6e5a3b5e15a7d0de18f1e Mon Sep 17 00:00:00 2001
From: James Woodcock <james_woodcock@yahoo.co.uk>
Date: Thu, 9 Aug 2012 20:59:32 +0100
Subject: [PATCH] Remove ambiguity in string compare.

---
 cde/lib/tt/lib/db/tt_db_property.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cde/lib/tt/lib/db/tt_db_property.h b/cde/lib/tt/lib/db/tt_db_property.h
index 76062e1..80e145f 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++;
-- 
1.7.11.2.138.g2b53359

