Module: Mesa Branch: master Commit: 9075823c17280d36ca2ba2e98ec93fb097801593 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9075823c17280d36ca2ba2e98ec93fb097801593
Author: Vinson Lee <[email protected]> Date: Fri Jan 16 16:21:41 2015 -0800 sha1: Fix gcry_md_hd_t typo. 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 <[email protected]> --- src/util/sha1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/sha1.c b/src/util/sha1.c index 658dc27..27ba93b 100644 --- a/src/util/sha1.c +++ b/src/util/sha1.c @@ -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); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
