]> git.sur5r.net Git - u-boot/blobdiff - tools/updater/string.c
86xx: remove the second DDR LAW setting for mpc8641hpcn
[u-boot] / tools / updater / string.c
index 8a8edec5cf662b517dfea235d8a1534840684916..954fb01e209790f759e34494bcc176054cc5cc1e 100644 (file)
@@ -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;
        }