aboutsummaryrefslogtreecommitdiff
path: root/tip22
diff options
context:
space:
mode:
authorFlorian Lohoff <flo@rfc822.org>2008-10-04 13:04:53 +0000
committerGuido Günther <agx@sigxcpu.org>2009-04-26 15:26:25 +0200
commitf67b21c9ea33de6070de851762fb84b002ae523b (patch)
treed46889f40e67ff721da1bdb4bfe964c2284a9cc3 /tip22
parent3c8b9481088b546af3f0fd161a432ba0f0cb682e (diff)
Remove arc from the malloc function names
Diffstat (limited to 'tip22')
-rw-r--r--tip22/tftpload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tip22/tftpload.c b/tip22/tftpload.c
index 37ca7d1..36465bf 100644
--- a/tip22/tftpload.c
+++ b/tip22/tftpload.c
@@ -109,7 +109,7 @@ static void InitMalloc(void)
printf("Adding %lu bytes at 0x%lx to the list of available memory\n\r",
end-start, start);
#endif
- arclib_malloc_add(start, end - start);
+ malloc_area_add(start, end - start);
}
}
current = ArcGetMemoryDescriptor(current);