diff options
author | nyamatongwe <devnull@localhost> | 2000-04-07 12:04:36 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-04-07 12:04:36 +0000 |
commit | 9785733416ef26d325802b81692f6fdc3506be55 (patch) | |
tree | 337dc33f1d022c7a460caf1e607bac12fe6e7b61 /src/PropSet.cxx | |
parent | 8cb3d80031a74c832b8a006562a9ef010f2cbe5e (diff) | |
download | scintilla-mirror-9785733416ef26d325802b81692f6fdc3506be55.tar.gz |
Changing code to ensure no warnings are produced by compilers.
Diffstat (limited to 'src/PropSet.cxx')
-rw-r--r-- | src/PropSet.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PropSet.cxx b/src/PropSet.cxx index 101b7f563..6d90aed34 100644 --- a/src/PropSet.cxx +++ b/src/PropSet.cxx @@ -376,7 +376,7 @@ bool WordList::InList(const char *s) { for (int i = 0; words[i][0]; i++) len++; SortWordList(words, len); - for (int k = 0; k < (sizeof(starts) / sizeof(starts[0])); k++) + for (unsigned int k = 0; k < (sizeof(starts) / sizeof(starts[0])); k++) starts[k] = -1; for (int l = len - 1; l >= 0; l--) { unsigned char indexChar = words[l][0]; |