From 3537d499b464b0f775e720ea7a297f760b3a9523 Mon Sep 17 00:00:00 2001
From: David Phillips <david@sighup.nz>
Date: Mon, 1 May 2017 15:03:19 +1200
Subject: Correct type a few declarations

---
 sand-leek.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sand-leek.c b/sand-leek.c
index e72a0d6..04bc304 100644
--- a/sand-leek.c
+++ b/sand-leek.c
@@ -19,9 +19,9 @@
 
 #define RSA_KEY_BITS          1024
 
-const static char base32_lookup[] = "abcdefghijklmnopqrstuvwxyz234567";
+static const char base32_lookup[] = "abcdefghijklmnopqrstuvwxyz234567";
 static char *search;
-static int search_len;
+static size_t search_len;
 sem_t working;
 
 void
-- 
cgit v1.1