_ostree_repo_file_replace_contents: make buf const
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
parent
a1352fec9d
commit
69184e70e9
|
|
@ -130,7 +130,7 @@ gboolean
|
||||||
_ostree_repo_file_replace_contents (OstreeRepo *self,
|
_ostree_repo_file_replace_contents (OstreeRepo *self,
|
||||||
int dfd,
|
int dfd,
|
||||||
const char *path,
|
const char *path,
|
||||||
guint8 *buf,
|
const guint8 *buf,
|
||||||
gsize len,
|
gsize len,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
GError **error);
|
GError **error);
|
||||||
|
|
|
||||||
|
|
@ -1509,7 +1509,7 @@ gboolean
|
||||||
_ostree_repo_file_replace_contents (OstreeRepo *self,
|
_ostree_repo_file_replace_contents (OstreeRepo *self,
|
||||||
int dfd,
|
int dfd,
|
||||||
const char *path,
|
const char *path,
|
||||||
guint8 *buf,
|
const guint8 *buf,
|
||||||
gsize len,
|
gsize len,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
GError **error)
|
GError **error)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue