summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_print.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-06-12 09:52:44 +0000
committerBodo Möller <bodo@openssl.org>1999-06-12 09:52:44 +0000
commite0f12c41de7f0de97842802936608d0b7b66c9cb (patch)
tree6371f4a53dade85d26a535e3b70bfffc0c67cb6a /crypto/bn/bn_print.c
parent5b5dd0c05714d540875f62378997dc816facb082 (diff)
Avoid some warnings (on silly compilers).
Diffstat (limited to 'crypto/bn/bn_print.c')
-rw-r--r--crypto/bn/bn_print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_print.c b/crypto/bn/bn_print.c
index 8b349b52d4..91418a2351 100644
--- a/crypto/bn/bn_print.c
+++ b/crypto/bn/bn_print.c
@@ -62,7 +62,7 @@
#include <openssl/buffer.h>
#include "bn_lcl.h"
-const static char *Hex="0123456789ABCDEF";
+static const char *Hex="0123456789ABCDEF";
/* Must 'Free' the returned data */
char *BN_bn2hex(BIGNUM *a)