From cd9caf5281a974ce67d8a16653a7751319c598f0 Mon Sep 17 00:00:00 2001 From: phk Date: Mon, 16 Dec 2002 22:33:27 +0000 Subject: Constification and some s/int/u_int/ changes. --- sys/geom/geom_aes.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/geom/geom_aes.c') diff --git a/sys/geom/geom_aes.c b/sys/geom/geom_aes.c index fae7f34..72f0d3d 100644 --- a/sys/geom/geom_aes.c +++ b/sys/geom/geom_aes.c @@ -70,9 +70,9 @@ #define MASTER_KEY_LENGTH (1024/8) -static u_char *aes_magic = "<>"; -static u_char *aes_magic_random = "<>"; -static u_char *aes_magic_test = "<>"; +static const u_char *aes_magic = "<>"; +static const u_char *aes_magic_random = "<>"; +static const u_char *aes_magic_test = "<>"; struct g_aes_softc { -- cgit v1.1