diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2011-05-28 20:26:45 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2011-05-28 20:26:45 +0200 |
commit | d8acb507bab90bcbab066d4ad3b8bae75bfac36d (patch) | |
tree | 4595210dda14d3844391c0547472e08b8d1f798b /lib | |
parent | 66dbce6a3a5c0489c1d5986dc29ecbcd13da8bbf (diff) | |
download | gnutls-d8acb507bab90bcbab066d4ad3b8bae75bfac36d.tar.gz |
digest_length() uses int as input.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gnutls_hash_int.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_hash_int.c b/lib/gnutls_hash_int.c index 94d6ffe2a8..7da98a571c 100644 --- a/lib/gnutls_hash_int.c +++ b/lib/gnutls_hash_int.c @@ -32,7 +32,7 @@ #include <gnutls_errors.h> static int -digest_length (gnutls_digest_algorithm_t algo) +digest_length (int algo) { switch (algo) { |