diff options
| author | miod <> | 2014-04-27 20:24:52 +0000 |
|---|---|---|
| committer | miod <> | 2014-04-27 20:24:52 +0000 |
| commit | 3192965f7c3dc7bef981bbbf1d40f6e3be9fcf5d (patch) | |
| tree | 0273044c83bb43eb7fb0daa5b70ca5de38b4ac72 /src/lib/libcrypto/asn1/f_enum.c | |
| parent | f5e526874dc7c5394cc6d189aa67c0484138d3d7 (diff) | |
| download | openbsd-3192965f7c3dc7bef981bbbf1d40f6e3be9fcf5d.tar.gz openbsd-3192965f7c3dc7bef981bbbf1d40f6e3be9fcf5d.tar.bz2 openbsd-3192965f7c3dc7bef981bbbf1d40f6e3be9fcf5d.zip | |
static const char * = "" -> static const char[] = "", to produce shorter code.
No functional change.
Diffstat (limited to 'src/lib/libcrypto/asn1/f_enum.c')
| -rw-r--r-- | src/lib/libcrypto/asn1/f_enum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/asn1/f_enum.c b/src/lib/libcrypto/asn1/f_enum.c index 5c42cdff01..c7b81ccbc9 100644 --- a/src/lib/libcrypto/asn1/f_enum.c +++ b/src/lib/libcrypto/asn1/f_enum.c | |||
| @@ -67,7 +67,7 @@ int | |||
| 67 | i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a) | 67 | i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a) |
| 68 | { | 68 | { |
| 69 | int i, n = 0; | 69 | int i, n = 0; |
| 70 | static const char *h = "0123456789ABCDEF"; | 70 | static const char h[] = "0123456789ABCDEF"; |
| 71 | char buf[2]; | 71 | char buf[2]; |
| 72 | 72 | ||
| 73 | if (a == NULL) | 73 | if (a == NULL) |
