From: Daniel Stenberg Date: Tue, 14 Aug 2001 09:24:48 +0000 (+0000) Subject: curl_memdebug takes a const argument now X-Git-Tag: curl-7_8_1~55 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a7e13e166dd0c90cebe2ccd4585c217795ad42c;p=curl curl_memdebug takes a const argument now --- diff --git a/lib/memdebug.c b/lib/memdebug.c index 4ccdc727d..f0e104a6d 100644 --- a/lib/memdebug.c +++ b/lib/memdebug.c @@ -58,7 +58,7 @@ FILE *logfile; /* this sets the log file name */ -void curl_memdebug(char *logname) +void curl_memdebug(const char *logname) { logfile = fopen(logname, "w"); } diff --git a/lib/memdebug.h b/lib/memdebug.h index 419b8b943..2a6a35ac2 100644 --- a/lib/memdebug.h +++ b/lib/memdebug.h @@ -11,7 +11,7 @@ void *curl_domalloc(size_t size, int line, const char *source); void *curl_dorealloc(void *ptr, size_t size, int line, const char *source); void curl_dofree(void *ptr, int line, const char *source); char *curl_dostrdup(const char *str, int line, const char *source); -void curl_memdebug(char *logname); +void curl_memdebug(const char *logname); /* file descriptor manipulators */ int curl_socket(int domain, int type, int protocol, int, const char *);