summaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2017-11-24 22:09:41 -0800
committerMatt Turner <mattst88@gmail.com>2017-11-24 23:33:06 -0800
commite0ea9bb5be34c464c67a1212e8924d0a38696d67 (patch)
tree394fcb24a80c7e29d9ba1985e0214bc07395c58e /test.c
parenteac19cb55396588704adac6f325c083a646879b7 (diff)
Change API to match upstream Mesa
Diffstat (limited to 'test.c')
-rw-r--r--test.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/test.c b/test.c
index fbea6b4..d779be8 100644
--- a/test.c
+++ b/test.c
@@ -36,11 +36,7 @@ main(int argc, char *argv[])
ElfW(Word) len = build_id_length(note);
- unsigned char *build_id = malloc(len * sizeof(char));
- if (!build_id)
- return -1;
-
- build_id_read(note, build_id);
+ const uint8_t *build_id = build_id_data(note);
printf("Build ID: ");
for (ElfW(Word) i = 0; i < len; i++) {