Skip to content

Commit

Permalink
Fix last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Jaeger committed Jan 4, 2006
1 parent db59b28 commit 8632c0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/mips/brk.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ __brk (void *addr)
"syscall" /* Perform the system call. */
: "=r" (res)
: "I" (SYS_ify (brk)), "r" (addr)
+ : "$4", "$7", __SYSCALL_CLOBBERS);
: "$4", "$7", __SYSCALL_CLOBBERS);
newbrk = (void *) res;
}
__curbrk = newbrk;
Expand Down

0 comments on commit 8632c0c

Please sign in to comment.