Mercurial > hg > xemacs-beta
diff src/xgccache.c @ 647:b39c14581166
[xemacs-hg @ 2001-08-13 04:45:47 by ben]
removal of unsigned, size_t, etc.
author | ben |
---|---|
date | Mon, 13 Aug 2001 04:46:48 +0000 |
parents | abe6d1db359e |
children | a8d8f419b459 |
line wrap: on
line diff
--- a/src/xgccache.c Wed Aug 08 12:15:04 2001 +0000 +++ b/src/xgccache.c Mon Aug 13 04:46:48 2001 +0000 @@ -104,7 +104,7 @@ every slot of the gcv when calling gc_cache_lookup. But we need the hash function to be as fast as possible; some timings should be done. */ - for (i = 0; i < (sizeof (XGCValues) / sizeof (unsigned long)); i++) + for (i = 0; i < (int) (sizeof (XGCValues) / sizeof (unsigned long)); i++) hash = (hash<<1) ^ *longs++; return hash; }