libarchive: Fix a 32 bit format warning
This is actually an error by default with our default CFLAGS.
This commit is contained in:
parent
f4d494a0a4
commit
88ae6f1b9e
|
|
@ -640,7 +640,7 @@ write_directory_to_libarchive_recurse (OstreeRepo *self,
|
||||||
if (r != bytes_read)
|
if (r != bytes_read)
|
||||||
{
|
{
|
||||||
propagate_libarchive_error (error, a);
|
propagate_libarchive_error (error, a);
|
||||||
g_prefix_error (error, "Failed to write %" G_GUINT64_FORMAT " bytes (code %" G_GUINT64_FORMAT"): ", bytes_read, r);
|
g_prefix_error (error, "Failed to write %" G_GUINT64_FORMAT " bytes (code %" G_GUINT64_FORMAT"): ", (guint64)bytes_read, r);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue