diff options
author | nyamatongwe <devnull@localhost> | 2002-04-21 10:20:59 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-04-21 10:20:59 +0000 |
commit | 044ad96868d92ceaf1748832e272577a289221ee (patch) | |
tree | 39857adc7906b22cb6629149b0ee36eb91f13e04 /include/SString.h | |
parent | 2fd5e782637b56483945a9d60af6c1a96a2b43ae (diff) | |
download | scintilla-mirror-044ad96868d92ceaf1748832e272577a289221ee.tar.gz |
Some Win64 compatibility and size_t correctness.
Diffstat (limited to 'include/SString.h')
-rw-r--r-- | include/SString.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/SString.h b/include/SString.h index 8ef3ede8e..d33d4c4fa 100644 --- a/include/SString.h +++ b/include/SString.h @@ -10,7 +10,7 @@ // These functions are implemented because each platform calls them something different. int CompareCaseInsensitive(const char *a, const char *b); -int CompareNCaseInsensitive(const char *a, const char *b, int len); +int CompareNCaseInsensitive(const char *a, const char *b, size_t len); bool EqualCaseInsensitive(const char *a, const char *b); // Define another string class. |