ostree-pull: Avoid an uninitialized variable warning

This commit is contained in:
Matthias Clasen 2012-05-07 23:19:21 -04:00 committed by Colin Walters
parent 225cebd5ef
commit 5a1a300892
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ find_object_in_remote_packs (OtPullData *pull_data,
GError **error) GError **error)
{ {
gboolean ret = FALSE; gboolean ret = FALSE;
guint64 ret_offset; guint64 ret_offset = 0;
guint i; guint i;
GPtrArray *iter; GPtrArray *iter;
ot_lvariant GVariant *csum_bytes_v = NULL; ot_lvariant GVariant *csum_bytes_v = NULL;