trivial: Fix some NULL/FALSE confusion in the daemon

This commit is contained in:
Richard Hughes 2020-08-17 14:48:23 +01:00
parent 0e7102c4f8
commit bfe6c77549

View File

@ -233,7 +233,7 @@ fu_main_create_request (FuMainPrivate *priv, const gchar *sender, GError **error
error);
if (value == NULL) {
g_prefix_error (error, "failed to read user id of caller: ");
return FALSE;
return NULL;
}
g_variant_get (value, "(u)", &calling_uid);
if (calling_uid == 0)