summaryrefslogtreecommitdiff
path: root/m4macros/glib-2.0.m4
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2008-10-10 04:44:53 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2008-10-10 04:44:53 +0000
commit65ac7d4034a47e8a5541405850f7ade9700dda92 (patch)
tree681d7fc5fc3f643ebc6024a4300dccef7114c2ea /m4macros/glib-2.0.m4
parent585135279f16dcac4929e0f7ecaed098d7b5dcfb (diff)
Bug 552861 – glib-2.0.m4 calls system(3) without storing its result
2008-10-10 Matthias Clasen <mclasen@redhat.com> Bug 552861 – glib-2.0.m4 calls system(3) without storing its result * m4macros/glib-2.0.m4: Cosmetic change to make -Werror happy. Patch by Andreas Köhler svn path=/trunk/; revision=7584
Diffstat (limited to 'm4macros/glib-2.0.m4')
-rw-r--r--m4macros/glib-2.0.m43
1 files changed, 2 insertions, 1 deletions
diff --git a/m4macros/glib-2.0.m4 b/m4macros/glib-2.0.m4
index be79a4626..c620123c6 100644
--- a/m4macros/glib-2.0.m4
+++ b/m4macros/glib-2.0.m4
@@ -93,8 +93,9 @@ main ()
{
int major, minor, micro;
char *tmp_version;
+ int ignored;
- system ("touch conf.glibtest");
+ ignored = system ("touch conf.glibtest");
/* HP/UX 9 (%@#!) writes to sscanf strings */
tmp_version = g_strdup("$min_glib_version");