summaryrefslogtreecommitdiff
path: root/nasmlib.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-02-21 17:54:31 -0800
committerH. Peter Anvin <hpa@zytor.com>2009-02-21 17:54:31 -0800
commit00bf04f74249aa20d162c44c20ffdb16e41dd56e (patch)
tree25d25e44af3781a3c16eedade310c70f6a850880 /nasmlib.c
parent577f57614a159e3c5ab10bf03d345846796de932 (diff)
downloadnasm-00bf04f74249aa20d162c44c20ffdb16e41dd56e.tar.gz
nasmlib: make nasm_strcat() take const arguments
None of the strings passed to nasm_strcat() are modified, to make them const.
Diffstat (limited to 'nasmlib.c')
-rw-r--r--nasmlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nasmlib.c b/nasmlib.c
index 34dbbcf5..8796879e 100644
--- a/nasmlib.c
+++ b/nasmlib.c
@@ -597,7 +597,7 @@ int src_get(int32_t *xline, char **xname)
return 0;
}
-char *nasm_strcat(char *one, char *two)
+char *nasm_strcat(const char *one, const char *two)
{
char *rslt;
int l1 = strlen(one);