diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2001-11-27 20:51:26 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2001-11-27 20:51:26 +0000 |
| commit | a1d8094b9e61c362e22e491f70d93107ddbc04fd (patch) | |
| tree | c861b619553892862cf76f0f13e1c74fef9eebdd /lib/libc/amd64/sys/brk.S | |
| parent | 2e6c92ffcef57c2e8016d723813e371b28897d22 (diff) | |
Notes
Diffstat (limited to 'lib/libc/amd64/sys/brk.S')
| -rw-r--r-- | lib/libc/amd64/sys/brk.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/amd64/sys/brk.S b/lib/libc/amd64/sys/brk.S index 652e4b9a6c263..d9d88773ccec5 100644 --- a/lib/libc/amd64/sys/brk.S +++ b/lib/libc/amd64/sys/brk.S @@ -58,7 +58,7 @@ ENTRY(brk) movl (%ecx),%eax movl %eax,4(%esp) ok: - lea SYS_break,%eax + mov $SYS_break,%eax KERNCALL jb err movl 4(%esp),%eax @@ -77,7 +77,7 @@ err: movl HIDENAME(minbrk),%eax movl %eax,4(%esp) ok: - lea SYS_break,%eax + mov $SYS_break,%eax KERNCALL jb err movl 4(%esp),%eax |
