1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

C++ doesn't allow variables to be declared without a type, use 'int' as

a default.
This commit is contained in:
Peter Howkins 2012-04-02 14:47:47 +01:00
parent 830a3572db
commit e7de343555

View 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;