summaryrefslogtreecommitdiffstats
path: root/src/util/mesa-sha1.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/mesa-sha1.h')
-rw-r--r--src/util/mesa-sha1.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/mesa-sha1.h b/src/util/mesa-sha1.h
index f927d5772db..ecbc708b5ea 100644
--- a/src/util/mesa-sha1.h
+++ b/src/util/mesa-sha1.h
@@ -34,7 +34,7 @@ extern "C" {
#define _mesa_sha1_init SHA1Init
-int
+void
_mesa_sha1_update(struct mesa_sha1 *ctx, const void *data, int size);
static inline void
@@ -43,7 +43,7 @@ _mesa_sha1_final(struct mesa_sha1 *ctx, unsigned char result[20])
SHA1Final(result, ctx);
}
-char *
+void
_mesa_sha1_format(char *buf, const unsigned char *sha1);
void