about summary refs log tree commit diff
path: root/sysdeps/unix/sysv
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-10-12 11:15:04 +0000
committerUlrich Drepper <drepper@redhat.com>1998-10-12 11:15:04 +0000
commit28c9c2c4e6ae0528cfb8c81688309e6132741731 (patch)
tree4b6730ef4e8dd5ee10e304980f2a0a4dd1e37652 /sysdeps/unix/sysv
parent4875f665fa4b02dfd7d16e73f203eb8acc3ae37f (diff)
downloadglibc-28c9c2c4e6ae0528cfb8c81688309e6132741731.tar.gz
glibc-28c9c2c4e6ae0528cfb8c81688309e6132741731.tar.xz
glibc-28c9c2c4e6ae0528cfb8c81688309e6132741731.zip
(PSEUDO): Add missing semicolon so that profiling works.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r--sysdeps/unix/sysv/linux/arm/sysdep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/arm/sysdep.h b/sysdeps/unix/sysv/linux/arm/sysdep.h
index 381ce26979..5972abaa9a 100644
--- a/sysdeps/unix/sysv/linux/arm/sysdep.h
+++ b/sysdeps/unix/sysv/linux/arm/sysdep.h
@@ -49,8 +49,8 @@
 #undef	PSEUDO
 #define	PSEUDO(name, syscall_name, args)				      \
   .text;								      \
-  .type syscall_error,%function	;					      \
-  ENTRY (name)								      \
+  .type syscall_error,%function;					      \
+  ENTRY (name);								      \
     DO_CALL (args, syscall_name);					      \
     cmn r0, $4096;							      \
     bhs PLTJMP(C_SYMBOL_NAME(__syscall_error));