diff options
author | Jim Blandy <jimb@red-bean.com> | 1998-07-30 14:27:00 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1998-07-30 14:27:00 +0000 |
commit | 77364130ed524d64ed06e80bdd8e1f678a593550 (patch) | |
tree | 72346a454b01b06ccdde743b7aaf6b8e5f9fc8fb /libguile/chars.c | |
parent | 0a1b8b1511622bc624e8e525e6fe6077abbdca3b (diff) | |
download | guile-77364130ed524d64ed06e80bdd8e1f678a593550.tar.gz |
* chars.c (scm_tables_prehistory): Add cast, to remove signed/
unsigned comparison warning.
Diffstat (limited to 'libguile/chars.c')
-rw-r--r-- | libguile/chars.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/chars.c b/libguile/chars.c index 186c88730..58f3da6ae 100644 --- a/libguile/chars.c +++ b/libguile/chars.c @@ -312,7 +312,7 @@ scm_tables_prehistory () int i; for (i = 0; i < SCM_CHAR_CODE_LIMIT; i++) scm_upcase_table[i] = scm_downcase_table[i] = i; - for (i = 0; i < sizeof scm_lowers / sizeof (char); i++) + for (i = 0; i < (int) (sizeof scm_lowers / sizeof (scm_lowers[0])); i++) { scm_upcase_table[scm_lowers[i]] = scm_uppers[i]; scm_downcase_table[scm_uppers[i]] = scm_lowers[i]; |