diff options
| author | David Phillips <david@sighup.nz> | 2017-05-01 15:03:19 +1200 | 
|---|---|---|
| committer | David Phillips <david@sighup.nz> | 2017-05-01 15:03:19 +1200 | 
| commit | 3537d499b464b0f775e720ea7a297f760b3a9523 (patch) | |
| tree | 9de4e88cfa866fed22e29b6a3f98e0565a38b3d6 | |
| parent | 75e91631cf6e252b8ee2c5bf6aad5cfb9508a23f (diff) | |
| download | sand-leek-3537d499b464b0f775e720ea7a297f760b3a9523.tar.xz | |
Correct type a few declarations
| -rw-r--r-- | sand-leek.c | 4 | 
1 files 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 | 
