use G_GNUC_PRINTF.

2006-07-16  Sven Neumann  <sven@gimp.org>

	* app/errors.h (gimp_fatal_error, gimp_terminate): use
G_GNUC_PRINTF.
This commit is contained in:
Sven Neumann
2006-07-16 10:31:37 +00:00
committed by Sven Neumann
parent 3a05881427
commit e0f2ea72cb
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2006-07-16 Sven Neumann <sven@gimp.org>
* app/errors.h (gimp_fatal_error, gimp_terminate): use G_GNUC_PRINTF.
2006-07-14 Maurits <m.rijk@chello.nl>
* plug-ins/imagemap/imap_grid.h

View File

@ -37,10 +37,10 @@ void gimp_error_log_func (const gchar *domain,
const gchar *message,
gpointer data) G_GNUC_NORETURN;
void gimp_fatal_error (const gchar *message,
...) G_GNUC_NORETURN ;
void gimp_terminate (const gchar *message,
...) G_GNUC_NORETURN;
void gimp_fatal_error (const gchar *format,
...) G_GNUC_PRINTF (1, 2) G_GNUC_NORETURN;
void gimp_terminate (const gchar *format,
...) G_GNUC_PRINTF (1, 2) G_GNUC_NORETURN;
#endif /* __ERRORS_H__ */