changeset 1026:beb375690453

More portable version of printflike.
author Thomas Klausner <tk@giga.or.at>
date Sat, 13 Apr 2013 22:18:05 +0200
parents afaeef21596b
children 0117a7746b21
files include/freeDiameter/libfdproto.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/include/freeDiameter/libfdproto.h	Sat Apr 13 16:26:09 2013 +0200
+++ b/include/freeDiameter/libfdproto.h	Sat Apr 13 22:18:05 2013 +0200
@@ -127,7 +127,7 @@
  * RETURN VALUE:
  *  None.
  */
-void fd_log ( int, const char *, ... ) __printflike(2, 3);
+void fd_log ( int, const char *, ... ) __attribute__ ((format (printf, 2, 3)));
 #define fd_log_debug(format,args...)  fd_log(FD_LOG_DEBUG, format, ## args)
 #define fd_log_notice(format,args...) fd_log(FD_LOG_NOTICE, format, ## args)
 #define fd_log_error(format,args...)  fd_log(FD_LOG_ERROR, format, ## args)
@@ -2336,7 +2336,7 @@
 	FD_MSG_LOG_TIMING	 /* profiling messages */
 };
 #define FD_MSG_LOG_MAX FD_MSG_LOG_TIMING
-void fd_msg_log( enum fd_msg_log_cause cause, struct msg * msg, const char * prefix_format, ... ) __printflike(3, 4);
+void fd_msg_log( enum fd_msg_log_cause cause, struct msg * msg, const char * prefix_format, ... ) __attribute__ ((format (printf, 3, 4)));
 
 /* configure the msg_log facility */
 enum fd_msg_log_method {
"Welcome to our mercurial repository"