diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2020-01-31 10:13:35 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2020-01-31 15:18:35 +0100 |
commit | 1fa7e1260d8b3c588c65ecb0c0f5d589ab61b1be (patch) | |
tree | 13220c1ddde591c383615ca83ff7f9df2e75901b /cli/mmcli-modem-oma.c | |
parent | 1216e887168c580b5cd868dfa3f798ab90a43001 (diff) |
cli: fix warnings with -Wshadow
mmcli-manager.c: In function ‘context_free’:
mmcli-manager.c:167:24: error: declaration of ‘ctx’ shadows a global declaration [-Werror=shadow]
167 | context_free (Context *ctx)
| ~~~~~~~~~^~~
mmcli-manager.c:51:17: note: shadowed declaration is here
51 | static Context *ctx;
| ^~~
...
Diffstat (limited to 'cli/mmcli-modem-oma.c')
-rw-r--r-- | cli/mmcli-modem-oma.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/cli/mmcli-modem-oma.c b/cli/mmcli-modem-oma.c index 0c615303..13fdc5ab 100644 --- a/cli/mmcli-modem-oma.c +++ b/cli/mmcli-modem-oma.c @@ -125,7 +125,7 @@ mmcli_modem_oma_options_enabled (void) } static void -context_free (Context *ctx) +context_free (void) { if (!ctx) return; @@ -155,7 +155,7 @@ ensure_modem_oma (void) void mmcli_modem_oma_shutdown (void) { - context_free (ctx); + context_free (); } static void @@ -439,7 +439,6 @@ mmcli_modem_oma_run_synchronous (GDBusConnection *connection) /* Request to setup OMA features? */ if (setup_str) { gboolean result; - GError *error = NULL; MMOmaFeature features; features = mm_common_get_oma_features_from_string (setup_str, &error); @@ -460,7 +459,6 @@ mmcli_modem_oma_run_synchronous (GDBusConnection *connection) /* Request to start session? */ if (start_str) { gboolean result; - GError *error = NULL; MMOmaSessionType session_type; session_type = mm_common_get_oma_session_type_from_string (start_str, &error); @@ -481,7 +479,6 @@ mmcli_modem_oma_run_synchronous (GDBusConnection *connection) /* Request to accept or reject session? */ if (accept_str || reject_str) { gboolean result; - GError *error = NULL; guint session_id; if (!mm_get_uint_from_str (accept_str ? accept_str : reject_str, &session_id)) { |