summaryrefslogtreecommitdiff
path: root/soltools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-28 09:21:35 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-28 09:02:50 +0100
commitc4d760b9edf0399955d30a0dfbe5f7b1b1ed37cb (patch)
tree3f072b8348ddfc03b6571f110318c3081b7e0b00 /soltools
parentd73871584f646cbf02467871fcfc7039ad985ff3 (diff)
add some __attribute__ ((format
found by -Wsuggest-attribute=format Change-Id: Ib4430805ddebf4d90e07a3f9d06fd6d832c244a4 Reviewed-on: https://gerrit.libreoffice.org/81582 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'soltools')
-rw-r--r--soltools/mkdepend/main.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/soltools/mkdepend/main.c b/soltools/mkdepend/main.c
index 7ee27c439f7d..b8b84b453476 100644
--- a/soltools/mkdepend/main.c
+++ b/soltools/mkdepend/main.c
@@ -654,6 +654,9 @@ void redirect(char *makefile)
fatalerr("cannot open \"%s\"\n", makefile ? makefile : "<NULL>");
}
+#if defined __GNUC__
+__attribute__ ((format (printf, 1, 2)))
+#endif
void fatalerr(char *msg, ...)
{
va_list args;
@@ -664,6 +667,9 @@ void fatalerr(char *msg, ...)
exit (1);
}
+#if defined __GNUC__
+__attribute__ ((format (printf, 1, 2)))
+#endif
void warning(char const *msg, ...)
{
#ifdef DEBUG_MKDEPEND
@@ -677,6 +683,9 @@ void warning(char const *msg, ...)
#endif /* DEBUG_MKDEPEND */
}
+#if defined __GNUC__
+__attribute__ ((format (printf, 1, 2)))
+#endif
void warning1(char const *msg, ...)
{
#ifdef DEBUG_MKDEPEND