Skip to content

Commit

Permalink
Buildfix for conmanctl
Browse files Browse the repository at this point in the history
  • Loading branch information
LibretroAdmin committed Dec 30, 2024
1 parent 9a19b49 commit e07028e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions network/drivers_wifi/connmanctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -724,11 +724,11 @@ static void connmanctl_tether_start_stop(void *data, bool start, char* configfil
RARCH_LOG("[CONNMANCTL] Tether start stop: connected to SSID \"%s\", service \"%s\"\n",
ssid, service);

snprintf(ln, sizeof(ln),
_len = snprintf(ln, sizeof(ln),
msg_hash_to_str(MSG_WIFI_DISCONNECT_FROM),
ssid);

runloop_msg_queue_push(ln, 1, 180, true,
runloop_msg_queue_push(ln, _len, 1, 180, true,
NULL, MESSAGE_QUEUE_ICON_DEFAULT,
MESSAGE_QUEUE_CATEGORY_INFO);

Expand Down

0 comments on commit e07028e

Please sign in to comment.