summaryrefslogtreecommitdiffstats
path: root/tools/updater/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/updater/string.c')
-rw-r--r--tools/updater/string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/updater/string.c b/tools/updater/string.c
index 8a8edec5cf..954fb01e20 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;
}
OpenPOWER on IntegriCloud