From 5b86a85130e6c2044e367a9d7134848c88fc8a1b Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Fri, 11 May 2001 14:39:41 +0000 Subject: [PATCH] __attribute -> __attribute__ git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@9914 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/com_err/com_err.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/com_err/com_err.h b/lib/com_err/com_err.h index 03cf87e31..03477cbf6 100644 --- a/lib/com_err/com_err.h +++ b/lib/com_err/com_err.h @@ -50,10 +50,10 @@ const char * error_message __P((long)); int init_error_table __P((const char**, long, int)); void com_err_va __P((const char *, long, const char *, va_list)) - __attribute((format(printf, 3, 0))); + __attribute__((format(printf, 3, 0))); void com_err __P((const char *, long, const char *, ...)) - __attribute((format(printf, 3, 4))); + __attribute__((format(printf, 3, 4))); errf set_com_err_hook __P((errf)); errf reset_com_err_hook __P((void));