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:
parent
830a3572db
commit
e7de343555
1 changed files with 1 additions and 1 deletions
|
@ -1807,7 +1807,7 @@ int DtMail::MailRc::hash_index(char *key)
|
||||||
{
|
{
|
||||||
register unsigned h;
|
register unsigned h;
|
||||||
register char *s;
|
register char *s;
|
||||||
register c;
|
register int c;
|
||||||
|
|
||||||
s = key;
|
s = key;
|
||||||
h = 0;
|
h = 0;
|
||||||
|
|
Loading…
Reference in a new issue