blob: 0e2c226c73bce1802695da8a26e0ed1f608929cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-plugins_am-project_projectparser.c,v 1.2 2013/12/07 23:47:02 dholland Exp $
--- plugins/am-project/projectparser.c.orig 2013-08-09 00:30:17.000000000 +0000
+++ plugins/am-project/projectparser.c
@@ -57,7 +57,7 @@ close_output (void)
output_stream = NULL;
}
-static void
+static G_GNUC_PRINTF(1,2) void
print (const gchar *message, ...)
{
va_list args;
@@ -70,7 +70,7 @@ print (const gchar *message, ...)
fputc('\n', output_stream);
}
-static void
+static G_GNUC_PRINTF(1,2) void
print_error (const gchar *message, ...)
{
va_list args;
|