ppp-manager: fix a typo in a debugging statement

Discovered by GCC 9:

  src/ppp/nm-ppp-manager.c: In function ‘_ppp_manager_start’:
  ./src/nm-logging.h:59:9: error: ‘%s’ directive argument is null [-Werror=format-overflow=]

Fixes: 35d9169c3c
This commit is contained in:
Lubomir Rintel 2019-01-22 17:07:13 +01:00 committed by Thomas Haller
parent b707da27d8
commit c7d6e55ed7

View file

@ -1049,8 +1049,8 @@ _ppp_manager_start (NMPPPManager *self,
_LOGI ("starting PPP connection");
_LOGD ("command line: %s", cmd_str);
(cmd_str = g_strjoinv (" ", (char **) ppp_cmd->pdata));
_LOGD ("command line: %s",
(cmd_str = g_strjoinv (" ", (char **) ppp_cmd->pdata)));
priv->pid = 0;
if (!g_spawn_async (NULL,