Index: src/untrusted/irt/irt_memory.c |
diff --git a/src/untrusted/irt/irt_memory.c b/src/untrusted/irt/irt_memory.c |
index dbd8e738b5934809630fcbcc30228b928f52ea05..4f3dec4b1d6278b854778315a10ff973b04e812a 100644 |
--- a/src/untrusted/irt/irt_memory.c |
+++ b/src/untrusted/irt/irt_memory.c |
@@ -21,7 +21,7 @@ static int nacl_irt_sysbrk(void **newbrk) { |
* TODO(mcgrathr): this interface should just go away!! |
*/ |
void *requested = *newbrk; |
- void *got = NACL_SYSCALL(sysbrk)(requested); |
+ void *got = NACL_SYSCALL(brk)(requested); |
if (got == requested || requested == NULL) { |
*newbrk = got; |