Skip to content

Commit

Permalink
Merge pull request #215 from cgwalters/unpacker-32
Browse files Browse the repository at this point in the history
unpacker: Fix a 32 bit format string error
  • Loading branch information
cgwalters committed Feb 24, 2016
2 parents 9a0a59f + f46302c commit 78d0bbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libpriv/rpmostree-unpacker.c
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ get_lead_sig_header_as_bytes (RpmOstreeUnpacker *self,
if (bytes_remaining > 0)
{
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
"Failed to read %" G_GUINT64_FORMAT " bytes of metadata",
"Failed to read %" G_GSIZE_FORMAT " bytes of metadata",
bytes_remaining);
goto out;
}
Expand Down

0 comments on commit 78d0bbb

Please sign in to comment.