C++ doesn't allow variables to be declared without a type, use 'int' as
authorPeter Howkins <flibble@users.sourceforge.net>
Mon, 2 Apr 2012 13:47:47 +0000 (14:47 +0100)
committerPeter Howkins <flibble@users.sourceforge.net>
Mon, 2 Apr 2012 13:47:47 +0000 (14:47 +0100)
a default.

cde/programs/dtmail/libDtMail/Common/DtMailRc.C

index 7a95e2cf38a5ab4c67dd828417797283545a966f..dc0e8bc5af78129cb109b185806a2078e0a8fd5a 100644 (file)
@@ -1807,7 +1807,7 @@ int DtMail::MailRc::hash_index(char *key)
 {
     register unsigned h;
     register char *s;
-    register c;
+    register int c;
     
     s = key;
     h = 0;