From 49df478ef1e793fa40d54b895b24a242c0b270b2 Mon Sep 17 00:00:00 2001 From: Markus Friedl Date: Wed, 9 Apr 2003 21:23:52 +0000 Subject: makeing a local array static saves some bytes; idea from mickey@ --- sys/crypto/blf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/crypto/blf.c b/sys/crypto/blf.c index e28015e6643..02793f30090 100644 --- a/sys/crypto/blf.c +++ b/sys/crypto/blf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: blf.c,v 1.4 2002/03/15 18:19:52 millert Exp $ */ +/* $OpenBSD: blf.c,v 1.5 2003/04/09 21:23:51 markus Exp $ */ /* * Blowfish block cipher for OpenBSD @@ -122,7 +122,7 @@ Blowfish_initstate(c) /* P-box and S-box tables initialized with digits of Pi */ - const blf_ctx initstate = + static const blf_ctx initstate = { { { -- cgit v1.2.3