pkgsrc/devel/anjuta/patches/patch-plugins_am-project_projectparser.c
dholland f8d9797f6e Fix unbuildable patches.
When inserting attributes, insert them in places where they're
syntactically valid. When inserting gcc pragmas, insert them only in
places where gcc accepts them.

HI JOERG.
2013-12-07 23:47:02 +00:00

22 lines
569 B
C

$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;