From 932eb87083df1989d0acfb71a1ce5ad9a3698bcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 8 Nov 2016 15:21:03 +0000 Subject: [PATCH] glib-mkenums: fix variable declaration Inconsequential, just sync up declaration with actual name of variable to avoid confusion. https://bugzilla.gnome.org/show_bug.cgi?id=770175 --- gobject/glib-mkenums.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gobject/glib-mkenums.in b/gobject/glib-mkenums.in index 3d5945f32..f7da97506 100755 --- a/gobject/glib-mkenums.in +++ b/gobject/glib-mkenums.in @@ -28,7 +28,7 @@ my $firstenum = 1; # Is this the first enumeration per file? my @entries; # [ $name, $val ] for each entry my $sandbox = Safe->new; # sandbox for safe evaluation of expressions -my $output_file; # Filename to write result into +my $output; # Filename to write result into sub parse_trigraph { my $opts = shift;