diff options
author | Neil Conway | 2004-10-05 00:14:45 +0000 |
---|---|---|
committer | Neil Conway | 2004-10-05 00:14:45 +0000 |
commit | 6440e27ebd489cc08e893baecc36972b98734693 (patch) | |
tree | a53276a338c6dda5a07d87525f501b0c33d4db8f | |
parent | 7f4564be95377f6404f7d3d5cb327e10d3d177eb (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 06040d33fb..e6dde087cc 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 = {{ { |