Quote checksum in mismatch error for clarity

Closes #321
run-without-fuse
Patrick 2019-11-14 04:19:34 -08:00 committed by GitHub
parent 14fb347e0b
commit 99d1d511b6
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;
}