From 41106a1f01b1d8f10bf317fbe85982c4cc3020c6 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 11 Jan 2004 05:52:19 +0000 Subject: [PATCH] hopefully shut doxygen up about a "const char" function --- tools/qfcc/source/linker.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tools/qfcc/source/linker.c b/tools/qfcc/source/linker.c index c962baa39..0e07b8903 100644 --- a/tools/qfcc/source/linker.c +++ b/tools/qfcc/source/linker.c @@ -161,10 +161,8 @@ Xgroup_add(def) // defgroup_add_defs Xgroup_add(reloc) // relocgroup_add_relocs Xgroup_add(func) // funcgroup_add_funcs -static void def_error (qfo_def_t *def, const char *fmt, ...) - __attribute__ ((format (printf, 2, 3))); -static void def_warning (qfo_def_t *def, const char *fmt, ...) - __attribute__ ((format (printf, 2, 3))); +static void def_error (qfo_def_t *def, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); +static void def_warning (qfo_def_t *def, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); static defref_t * get_defref (qfo_def_t *def, defgroup_t *defgroup)