sign-ed25519: Fix error message of validate_length
authorMisaki Kasumi <misakikasumi@outlook.com>
Tue, 17 Dec 2024 01:58:48 +0000 (09:58 +0800)
committerColin Walters <walters@verbum.org>
Tue, 17 Dec 2024 15:55:08 +0000 (15:55 +0000)
src/libostree/ostree-sign-ed25519.c

index 3dcff2ebb58c27801ad2cf93c6c8805e5f2feca6..001615d95322534bcaaed75c51c57d8a1480db6e 100644 (file)
@@ -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