diff options
author | Neil Conway | 2004-10-05 00:14:45 +0000 |
---|---|---|
committer | Neil Conway | 2004-10-05 00:14:45 +0000 |
commit | 125bb6cee4a70276c9342417a0ccd67f6c38723e (patch) | |
tree | 2dc8717e0d1183b4453e3f1fc81c128fc2c2f686 | |
parent | af7849f184f2bb47d698a497a1637a16185eaa99 (diff) |
Pickup fix from upstream OpenBSD sources: mark a read-only local array as
"static" to reduce size of generated code slightly.
-rw-r--r-- | contrib/pgcrypto/blf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pgcrypto/blf.c b/contrib/pgcrypto/blf.c index da2047b6cf5..a1af7479c24 100644 --- a/contrib/pgcrypto/blf.c +++ b/contrib/pgcrypto/blf.c @@ -126,7 +126,7 @@ Blowfish_initstate(blf_ctx * c) /* P-box and S-box tables initialized with digits of Pi */ - const blf_ctx initstate = + static const blf_ctx initstate = {{ { |