Merge pull request #322 from flatpak/tingping/checksum-quotes

Quote checksum in mismatch error for clarity
run-without-fuse
Matthew Leeds 2019-11-14 10:41:40 -08:00 committed by GitHub
commit 8c7bcf08a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1914,7 +1914,7 @@ compare_checksum (const char *name,
if (strcmp (expected_checksum, measured_checksum) != 0)
{
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
"Wrong %s checksum for %s, expected %s, was %s", type_name, name,
"Wrong %s checksum for %s, expected \"%s\", was \"%s\"", type_name, name,
expected_checksum, measured_checksum);
return FALSE;
}