genmarshal: Constify global variables

https://bugzilla.gnome.org/show_bug.cgi?id=781755
This commit is contained in:
Emmanuele Bassi 2017-04-26 13:45:55 +01:00
parent 1ffad8fed9
commit a8b5192d16

View File

@ -120,8 +120,8 @@ static const GScannerConfig scanner_config_template =
FALSE /* symbol_2_token */,
FALSE /* scope_0_fallback */,
};
static gchar * const std_marshaller_prefix = "g_cclosure_marshal";
static gchar *marshaller_prefix = "g_cclosure_user_marshal";
static const char *std_marshaller_prefix = "g_cclosure_marshal";
static const char *marshaller_prefix = "g_cclosure_user_marshal";
static gchar *output_fn = NULL;
static gint output_fd = -1;
static gchar *output_tmpfn = NULL;