From 64af0aa6de5f5e7643a391d3d6d544172ead3148 Mon Sep 17 00:00:00 2001 From: Ed Beroset Date: Fri, 17 May 2002 03:11:15 +0000 Subject: [PATCH] added const keyword to strdup argument --- nasmlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nasmlib.c b/nasmlib.c index d96a492b..235c4699 100644 --- a/nasmlib.c +++ b/nasmlib.c @@ -83,9 +83,9 @@ void nasm_free (void *q) } #ifdef LOGALLOC -char *nasm_strdup_log (char *file, int line, char *s) +char *nasm_strdup_log (char *file, int line, const char *s) #else -char *nasm_strdup (char *s) +char *nasm_strdup (const char *s) #endif { char *p; -- 2.11.4.GIT