Add format specifier for error

master
Max Moser 2018-04-05 21:22:29 +02:00
parent b5757b8502
commit c8c9db9f8f
1 changed files with 3 additions and 1 deletions

View File

@ -176,7 +176,8 @@ typedef gboolean (*CheckFunc)(const char *str);
static gboolean
check (WireguardEditorPrivate *priv,
char *widget_name,
CheckFunc chk, const char *key,
CheckFunc chk,
const char *key,
gboolean set_error,
GError **error)
{
@ -193,6 +194,7 @@ check (WireguardEditorPrivate *priv,
g_set_error (error,
NMV_EDITOR_PLUGIN_ERROR,
NMV_EDITOR_PLUGIN_ERROR_INVALID_PROPERTY,
"%s",
key);
}
return FALSE;