From: Ulrich Drepper Date: Mon, 12 Oct 1998 11:15:04 +0000 (+0000) Subject: (PSEUDO): Add missing semicolon so that profiling works. X-Git-Tag: cvs/glibc-2_0_98~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28c9c2c4e6ae0528cfb8c81688309e6132741731;p=thirdparty%2Fglibc.git (PSEUDO): Add missing semicolon so that profiling works. --- diff --git a/sysdeps/unix/sysv/linux/arm/sysdep.h b/sysdeps/unix/sysv/linux/arm/sysdep.h index 381ce269798..5972abaa9a2 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));