From 68b37dc001eb19a5e8f58fa1d862719faad34835 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Mon, 6 Oct 2014 18:54:18 +0200 Subject: [PATCH] libostree: fix a gobject-introspection warning src/libostree/ostree-repo.c:1759: Warning: OSTree: ostree_repo_import_object_from: unknown parameter 'checksum' in documentation comment, should be 'sha256' Signed-off-by: Giuseppe Scrivano --- src/libostree/ostree-repo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libostree/ostree-repo.h b/src/libostree/ostree-repo.h index 856b764a..5ca9b3fe 100644 --- a/src/libostree/ostree-repo.h +++ b/src/libostree/ostree-repo.h @@ -268,7 +268,7 @@ gboolean ostree_repo_query_object_storage_size (OstreeRepo *self, gboolean ostree_repo_import_object_from (OstreeRepo *self, OstreeRepo *source, OstreeObjectType objtype, - const char *sha256, + const char *checksum, GCancellable *cancellable, GError **error);