diff options
author | 2000-01-06 16:29:29 +0000 | |
---|---|---|
committer | 2000-01-06 16:29:29 +0000 | |
commit | 1099243468972c97d1819b70a476adfb9d1fdeeb (patch) | |
tree | ce43be83c06fa125c83f32a8c0767fb65e6ef700 | |
parent | abstract -pthread switch into PTHREAD var (diff) | |
download | wireguard-openbsd-1099243468972c97d1819b70a476adfb9d1fdeeb.tar.xz wireguard-openbsd-1099243468972c97d1819b70a476adfb9d1fdeeb.zip |
missing ';'
-rw-r--r-- | lib/libc/arch/i386/sys/sigreturn.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/i386/sys/sigreturn.S b/lib/libc/arch/i386/sys/sigreturn.S index d5b4a713914..b94f215a6ad 100644 --- a/lib/libc/arch/i386/sys/sigreturn.S +++ b/lib/libc/arch/i386/sys/sigreturn.S @@ -38,7 +38,7 @@ #if defined(SYSLIBC_SCCS) .text - .asciz "$OpenBSD: sigreturn.S,v 1.4 2000/01/06 10:41:58 d Exp $" + .asciz "$OpenBSD: sigreturn.S,v 1.5 2000/01/06 16:29:29 d Exp $" #endif /* SYSLIBC_SCCS */ /* @@ -48,7 +48,7 @@ #undef _PROF_PROLOGUE #define _PROF_PROLOGUE \ pusha; \ - .data; 1:; .long 0; .text; movl $1b,%eax; call mcount; popa ; nop + .data; 1:; .long 0; .text; movl $1b,%eax; call mcount; popa ; nop ; #endif /* PROF */ SYSCALL(sigreturn) |