Commit 1a7e13e1 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

curl_memdebug takes a const argument now

parent 3a37c0ae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");
}
+1 −1
Original line number Diff line number Diff line
@@ -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 *);