summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Leonard <d@cvs.openbsd.org>2000-01-06 16:29:30 +0000
committerDavid Leonard <d@cvs.openbsd.org>2000-01-06 16:29:30 +0000
commit4366a77aeb5f7feddad203af8b6042112cd69d2e (patch)
tree5558443339f1c47e2603393c9b79b6c5726776f5
parent9ca3abe14ba03f278030bfe07cd0be76eee54d1d (diff)
missing ';'
-rw-r--r--lib/libc/arch/i386/sys/sigreturn.S4
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)