summaryrefslogtreecommitdiff
path: root/firmware/rolo.c
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2022-10-15 23:55:39 +0100
committerAidan MacDonald <amachronic@protonmail.com>2023-01-13 10:32:54 +0000
commit1e9ad3ca0d9bf3e917eb2beb460421155144760a (patch)
tree752590b42f338f03223e024fc5b642ac9a8a5598 /firmware/rolo.c
parent3301c5aa6db76832dbb9af8f72d29b348190fd91 (diff)
downloadrockbox-1e9ad3ca0d9bf3e917eb2beb460421155144760a.tar.gz
rockbox-1e9ad3ca0d9bf3e917eb2beb460421155144760a.zip
Remove buflib allocation names, part two
Remove allocation names from the buflib API and fix up all callers. Change-Id: I3df922e258d5f0d711d70e72b56b4ed634fb0f5a
Diffstat (limited to 'firmware/rolo.c')
-rw-r--r--firmware/rolo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/rolo.c b/firmware/rolo.c
index d280e39243..a3e6d5c2b9 100644
--- a/firmware/rolo.c
+++ b/firmware/rolo.c
@@ -239,7 +239,7 @@ int rolo_load(const char* filename)
239 239
240 /* get the system buffer. release only in case of error, otherwise 240 /* get the system buffer. release only in case of error, otherwise
241 * we don't return anyway */ 241 * we don't return anyway */
242 rolo_handle = core_alloc_maximum("rolo", &filebuf_size, &buflib_ops_locked); 242 rolo_handle = core_alloc_maximum(&filebuf_size, &buflib_ops_locked);
243 if (rolo_handle < 0) 243 if (rolo_handle < 0)
244 { 244 {
245 rolo_error("OOM"); 245 rolo_error("OOM");