[sysprof] libsysprof-ui: avoid use of environ for -Werror=shadow
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [sysprof] libsysprof-ui: avoid use of environ for -Werror=shadow
- Date: Mon, 21 Oct 2019 18:35:47 +0000 (UTC)
commit 73dc39329a7a156b6ca320b08ae045a3673cb186
Author: Christian Hergert <chergert redhat com>
Date: Mon Oct 21 11:35:42 2019 -0700
libsysprof-ui: avoid use of environ for -Werror=shadow
Fixes #18
src/libsysprof-ui/sysprof-profiler-assistant.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/libsysprof-ui/sysprof-profiler-assistant.c b/src/libsysprof-ui/sysprof-profiler-assistant.c
index 22e3e24..c7fcf77 100644
--- a/src/libsysprof-ui/sysprof-profiler-assistant.c
+++ b/src/libsysprof-ui/sysprof-profiler-assistant.c
@@ -235,7 +235,7 @@ sysprof_profiler_assistant_record_clicked_cb (SysprofProfilerAssistant *self,
{
g_auto(GStrv) argv = NULL;
g_auto(GStrv) env = NULL;
- SysprofEnviron *environ;
+ SysprofEnviron *environ_;
const gchar *command;
gint argc;
@@ -245,8 +245,8 @@ sysprof_profiler_assistant_record_clicked_cb (SysprofProfilerAssistant *self,
sysprof_profiler_set_spawn (profiler, TRUE);
sysprof_profiler_set_spawn_argv (profiler, (const gchar * const *)argv);
- environ = sysprof_environ_editor_get_environ (self->environ_editor);
- env = sysprof_environ_get_environ (environ);
+ environ_ = sysprof_environ_editor_get_environ (self->environ_editor);
+ env = sysprof_environ_get_environ (environ_);
sysprof_profiler_set_spawn_env (profiler, (const gchar * const *)env);
sysprof_profiler_set_spawn_inherit_environ (profiler,
@@ -405,7 +405,7 @@ sysprof_profiler_assistant_class_init (SysprofProfilerAssistantClass *klass)
static void
sysprof_profiler_assistant_init (SysprofProfilerAssistant *self)
{
- g_autoptr(SysprofEnviron) environ = sysprof_environ_new ();
+ g_autoptr(SysprofEnviron) environ_ = sysprof_environ_new ();
gtk_widget_init_template (GTK_WIDGET (self));
@@ -445,7 +445,7 @@ sysprof_profiler_assistant_init (SysprofProfilerAssistant *self)
self,
G_CONNECT_SWAPPED);
- sysprof_environ_editor_set_environ (self->environ_editor, environ);
+ sysprof_environ_editor_set_environ (self->environ_editor, environ_);
}
void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]