From: Peter Howkins Date: Mon, 2 Apr 2012 13:47:47 +0000 (+0100) Subject: C++ doesn't allow variables to be declared without a type, use 'int' as X-Git-Tag: 2.2.0a~26^2~60 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e7de343555deb06d360633499a6b2761312d190f;p=oweals%2Fcde.git C++ doesn't allow variables to be declared without a type, use 'int' as a default. --- diff --git a/cde/programs/dtmail/libDtMail/Common/DtMailRc.C b/cde/programs/dtmail/libDtMail/Common/DtMailRc.C index 7a95e2cf..dc0e8bc5 100644 --- a/cde/programs/dtmail/libDtMail/Common/DtMailRc.C +++ b/cde/programs/dtmail/libDtMail/Common/DtMailRc.C @@ -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;