]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
fileeq: optimize size of ul_fileeq_method
authorThomas Weißschuh <thomas@t-8ch.de>
Sun, 24 Dec 2023 13:04:42 +0000 (14:04 +0100)
committerThomas Weißschuh <thomas@t-8ch.de>
Sun, 31 Dec 2023 12:06:02 +0000 (13:06 +0100)
Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
lib/fileeq.c

index af5b4e32bc13c3fe51387092be6e6d66aa834ba0..2a74af8a79932c5537272ec98c4b825cf451b34e 100644 (file)
@@ -79,9 +79,9 @@ enum {
 };
 
 struct ul_fileeq_method {
-       int id;
        const char *name;       /* name used by applications */
        const char *kname;      /* name used by kernel crypto */
+       int id;
        short digsiz;
 };