mirror of
https://github.com/curl/curl.git
synced 2026-05-30 18:47:29 +03:00
curl_memdebug takes a const argument now
This commit is contained in:
parent
3a37c0ae23
commit
1a7e13e166
2 changed files with 2 additions and 2 deletions
|
|
@ -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");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 *);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue