Fix some g_propagate_error typos

tingping/wmclass
Alexander Larsson 2016-02-08 16:16:38 +01:00
parent 955d165cf2
commit 32e9502675
2 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ xdg_app_builtin_build_init (int argc, char **argv, GCancellable *cancellable, GE
{
if (!g_error_matches (my_error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND))
{
g_propagate_error (error, g_steal_pointer (&error));
g_propagate_error (error, g_steal_pointer (&my_error));
return FALSE;
}

View File

@ -1704,7 +1704,7 @@ builder_manifest_create_platform (BuilderManifest *self,
if (g_error_matches (my_error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND))
continue;
g_propagate_error (error, g_steal_pointer (&error));
g_propagate_error (error, g_steal_pointer (&my_error));
return FALSE;
}