pull: use same name for parameter and documentation comment
Fixes this warning: src/libostree/ostree-repo-pull.c:2162: Warning: OSTree: ostree_repo_pull_with_options: unknown parameter 'remote_name_or_baseurl' in documentation comment, should be 'remote_name' Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> Closes: #472 Approved by: jlebon
This commit is contained in:
parent
3ef4cc2e5b
commit
47b0b4120a
|
|
@ -3005,7 +3005,7 @@ out:
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
ostree_repo_pull_with_options (OstreeRepo *self,
|
ostree_repo_pull_with_options (OstreeRepo *self,
|
||||||
const char *remote_name,
|
const char *remote_name_or_baseurl,
|
||||||
GVariant *options,
|
GVariant *options,
|
||||||
OstreeAsyncProgress *progress,
|
OstreeAsyncProgress *progress,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
|
|
|
||||||
|
|
@ -1006,7 +1006,7 @@ ostree_repo_pull_one_dir (OstreeRepo *self,
|
||||||
|
|
||||||
_OSTREE_PUBLIC
|
_OSTREE_PUBLIC
|
||||||
gboolean ostree_repo_pull_with_options (OstreeRepo *self,
|
gboolean ostree_repo_pull_with_options (OstreeRepo *self,
|
||||||
const char *remote_name,
|
const char *remote_name_or_baseurl,
|
||||||
GVariant *options,
|
GVariant *options,
|
||||||
OstreeAsyncProgress *progress,
|
OstreeAsyncProgress *progress,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue