Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix conflicting types of temporary variables caused compilation errors #1

Open
wants to merge 1 commit into
base: maemo/chimaera
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
libicd-network-wpasupplicant (0.1.14) unstable; urgency=low

* Fix conflicting types of temporary variables caused compilation errors

-- Blagovest Petrov <[email protected]> Tue, 29 Nov 2022 21:25:16 +0200

libicd-network-wpasupplicant (0.1.13) unstable; urgency=low

* Fix problem with invalid network entries
Expand Down
6 changes: 3 additions & 3 deletions src/wpaicd.c
Original file line number Diff line number Diff line change
Expand Up @@ -594,9 +594,9 @@ static void on_scan_done(GDBusProxy * proxy,
/* TODO: Ensure everything is freed, GError checking, Gerror re-initialisation, etc */
/* TODO: Ensure that we properly deal with errors / missing values */

gchar *tmp = g_variant_print(parameters, TRUE);
WPALOG_DEBUG("on_scan_done. params: %s", tmp);
g_free(tmp);
gchar *tmp_param = g_variant_print(parameters, TRUE);
WPALOG_DEBUG("on_scan_done. params: %s", tmp_param);
g_free(tmp_param);

GError *error = NULL;

Expand Down