summaryrefslogtreecommitdiffstats
path: root/src/md5util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/md5util.c')
-rw-r--r--src/md5util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/md5util.c b/src/md5util.c
index 27c6dd3..a6009e3 100644
--- a/src/md5util.c
+++ b/src/md5util.c
@@ -36,7 +36,7 @@
#include "syrep.h"
void fhex(const unsigned char *bin, int len, char *txt) {
- const static char hex[] = "0123456789abcdef";
+ static const char hex[] = "0123456789abcdef";
int i;
for (i = 0; i < len; i++) {