Merge pull request #215 from cgwalters/unpacker-32

unpacker: Fix a 32 bit format string error
This commit is contained in:
Colin Walters 2016-02-23 21:09:25 -05:00
commit 78d0bbbf12

View File

@ -894,7 +894,7 @@ get_lead_sig_header_as_bytes (RpmOstreeUnpacker *self,
if (bytes_remaining > 0) if (bytes_remaining > 0)
{ {
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, 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); bytes_remaining);
goto out; goto out;
} }