summaryrefslogtreecommitdiffstats
path: root/src/util/mesa-sha1.c
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2017-01-24 21:21:10 +0000
committerEmil Velikov <[email protected]>2017-03-15 11:18:45 +0000
commit0fd61fb639f7704c4faa8c7fd262af32b3a1a01b (patch)
tree94d97f7125e391afa87c47b6eab395b01205dc20 /src/util/mesa-sha1.c
parenta9a4028fd7136ee2ee7bf0efa8179e7a6312f008 (diff)
util/sha1: drop _mesa_sha1_{update, format} return type
Unused/unchecked by any of the callers. v2: Fix the glsl cases that have crept in since v1 Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Grazvydas Ignotas <[email protected]>
Diffstat (limited to 'src/util/mesa-sha1.c')
-rw-r--r--src/util/mesa-sha1.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/util/mesa-sha1.c b/src/util/mesa-sha1.c
index eb882e8bd00..a14fec97e7c 100644
--- a/src/util/mesa-sha1.c
+++ b/src/util/mesa-sha1.c
@@ -27,11 +27,10 @@
#include "sha1/sha1.h"
#include "mesa-sha1.h"
-int
+void
_mesa_sha1_update(struct mesa_sha1 *ctx, const void *data, int size)
{
SHA1Update(ctx, data, size);
- return 1;
}
void
@@ -44,7 +43,7 @@ _mesa_sha1_compute(const void *data, size_t size, unsigned char result[20])
_mesa_sha1_final(&ctx, result);
}
-char *
+void
_mesa_sha1_format(char *buf, const unsigned char *sha1)
{
static const char hex_digits[] = "0123456789abcdef";
@@ -55,6 +54,4 @@ _mesa_sha1_format(char *buf, const unsigned char *sha1)
buf[i + 1] = hex_digits[sha1[i >> 1] & 0x0f];
}
buf[i] = '\0';
-
- return buf;
}