diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-04-09 21:23:52 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-04-09 21:23:52 +0000 |
commit | 49df478ef1e793fa40d54b895b24a242c0b270b2 (patch) | |
tree | f7c9d9ba7f7df9c921f5b350bb9c2b0c0ee0c190 /sys/crypto | |
parent | ff0c1858d6de379c782754956557a3d4e7bdf3e4 (diff) |
makeing a local array static saves some bytes; idea from mickey@
Diffstat (limited to 'sys/crypto')
-rw-r--r-- | sys/crypto/blf.c | 4 |
1 files 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 = { { { |