Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/lib/libalpm/util.c
diff options
context:
space:
mode:
authorRikard Falkeborn <rikard.falkeborn@gmail.com>2020-04-24 23:43:58 +0200
committerAllan McRae <allan@archlinux.org>2020-04-29 13:57:45 +1000
commit24392223752480b9088321ad0f914118d0346e55 (patch)
tree80890728bbe771c5205a64ec20dd1ee8bfe3cecd /lib/libalpm/util.c
parent3ea7fdd96c874e111588a6e64ee30b75b55db785 (diff)
Constify some input pointers
Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/util.c')
-rw-r--r--lib/libalpm/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c
index cb838e43..ead03004 100644
--- a/lib/libalpm/util.c
+++ b/lib/libalpm/util.c
@@ -1006,7 +1006,7 @@ static int sha256_file(const char *path, unsigned char output[32])
* @return a NULL terminated string with the hexadecimal representation of
* bytes or NULL on error. This string must be freed.
*/
-static char *hex_representation(unsigned char *bytes, size_t size)
+static char *hex_representation(const unsigned char *bytes, size_t size)
{
static const char *hex_digits = "0123456789abcdef";
char *str;