sha1: Fix gcry_md_hd_t typo.
authorVinson Lee <vlee@freedesktop.org>
Sat, 17 Jan 2015 00:21:41 +0000 (16:21 -0800)
committerVinson Lee <vlee@freedesktop.org>
Sat, 17 Jan 2015 00:25:39 +0000 (16:25 -0800)
Fix build error.

  CC       libmesautil_la-sha1.lo
sha1.c: In function '_mesa_sha1_final':
sha1.c:210:22: error: 'grcy_md_hd_t' undeclared (first use in this function)
    gcry_md_hd_t h = (grcy_md_hd_t) ctx;
                      ^

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=88519
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
src/util/sha1.c

index 658dc27fc192a8007765829f4729e4d639e5c365..27ba93bdf07493ce14c63753b78dade547697627 100644 (file)
@@ -207,7 +207,7 @@ _mesa_sha1_update(struct mesa_sha1 *ctx, const void *data, int size)
 int
 _mesa_sha1_final(struct mesa_sha1 *ctx, unsigned char result[20])
 {
-   gcry_md_hd_t h = (grcy_md_hd_t) ctx;
+   gcry_md_hd_t h = (gcry_md_hd_t) ctx;
 
    memcpy(result, gcry_md_read(h, GCRY_MD_SHA1), 20);
    gcry_md_close(h);