diff options
Diffstat (limited to 'tools/updater/string.c')
| -rw-r--r-- | tools/updater/string.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tools/updater/string.c b/tools/updater/string.c index 8a8edec5c..954fb01e2 100644 --- a/tools/updater/string.c +++ b/tools/updater/string.c @@ -164,7 +164,7 @@ char * strdup(const char *s)  	char *new;  	if ((s == NULL)	|| -	    ((new = mon_malloc (strlen(s) + 1)) == NULL) ) { +	    ((new = malloc (strlen(s) + 1)) == NULL) ) {  		return NULL;  	} |