Skip to content

Commit

Permalink
sign-ed25519: Fix error message of validate_length
Browse files Browse the repository at this point in the history
  • Loading branch information
ruihe774 committed Dec 17, 2024
1 parent 74efebd commit e9d2410
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libostree/ostree-sign-ed25519.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ validate_length (gsize found, gsize expected, GError **error)
return TRUE;
return glnx_throw (
error, "Ill-formed input: expected %" G_GSIZE_FORMAT " bytes, got %" G_GSIZE_FORMAT " bytes",
found, expected);
expected, found);
}

static gboolean
Expand Down

0 comments on commit e9d2410

Please sign in to comment.