diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-11-08 19:15:33 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-11-08 19:15:33 -0800 |
commit | c84f1b927b0f0b1c9f0489cd4aa2667383f3e56f (patch) | |
tree | b63f3e96277cbcba0b21a40c072bd5f5403e9889 /nasmlib.h | |
parent | 5fbbc8c2e7fbf6756fd1e8a400c6295c2428b897 (diff) | |
download | nasm-c84f1b927b0f0b1c9f0489cd4aa2667383f3e56f.tar.gz nasm-c84f1b927b0f0b1c9f0489cd4aa2667383f3e56f.tar.bz2 nasm-c84f1b927b0f0b1c9f0489cd4aa2667383f3e56f.zip |
constipate the "str" argument to bsi() and bsii()
The string argument to bsi() and bsii() should be const.
Diffstat (limited to 'nasmlib.h')
-rw-r--r-- | nasmlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -304,8 +304,8 @@ void saa_fpwrite(struct SAA *, FILE *); * * bsi() is case sensitive, bsii() is case insensitive. */ -int bsi(char *string, const char **array, int size); -int bsii(char *string, const char **array, int size); +int bsi(const char *string, const char **array, int size); +int bsii(const char *string, const char **array, int size); char *src_set_fname(char *newname); int32_t src_set_linnum(int32_t newline); |