aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/https/lgl/gc-libgcrypt.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2008-10-12 20:23:58 +0000
committerChristian Grothoff <christian@grothoff.org>2008-10-12 20:23:58 +0000
commit137077f15081248b401c93dcaf3a380ee7b91e30 (patch)
tree3ab0d9ccff0b4f1fac34b561b3e9be8ee8e954e0 /src/daemon/https/lgl/gc-libgcrypt.c
parent796d310d532f74661c5b112dbe75ca2e0cf146a8 (diff)
downloadlibmicrohttpd-137077f15081248b401c93dcaf3a380ee7b91e30.tar.gz
libmicrohttpd-137077f15081248b401c93dcaf3a380ee7b91e30.zip
fixing warning
Diffstat (limited to 'src/daemon/https/lgl/gc-libgcrypt.c')
-rw-r--r--src/daemon/https/lgl/gc-libgcrypt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/https/lgl/gc-libgcrypt.c b/src/daemon/https/lgl/gc-libgcrypt.c
index 2a87d482..a51a7bb4 100644
--- a/src/daemon/https/lgl/gc-libgcrypt.c
+++ b/src/daemon/https/lgl/gc-libgcrypt.c
@@ -411,7 +411,7 @@ MHD_gc_hash_read (MHD_gc_hash_handle handle)
411 const char *digest; 411 const char *digest;
412 { 412 {
413 gcry_md_final (ctx->gch); 413 gcry_md_final (ctx->gch);
414 digest = gcry_md_read (ctx->gch, 0); 414 digest = (const char*) gcry_md_read (ctx->gch, 0);
415 } 415 }
416 416
417 return digest; 417 return digest;