summaryrefslogtreecommitdiff
path: root/firmware/common/unicode.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/common/unicode.c')
-rw-r--r--firmware/common/unicode.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/common/unicode.c b/firmware/common/unicode.c
index e53ad6bcb0..1ed2e5e49d 100644
--- a/firmware/common/unicode.c
+++ b/firmware/common/unicode.c
@@ -166,15 +166,15 @@ static unsigned short default_cp_table_buf[MAX_CP_TABLE_SIZE+1];
166 default_cp_table_buf 166 default_cp_table_buf
167#define cp_table_free(handle) \ 167#define cp_table_free(handle) \
168 do {} while (0) 168 do {} while (0)
169#define cp_table_alloc(filename, size, opsp) \ 169#define cp_table_alloc(size, opsp) \
170 ({ (void)(opsp); 1; }) 170 ({ (void)(opsp); 1; })
171#define cp_table_pin(handle) \ 171#define cp_table_pin(handle) \
172 do { (void)handle; } while(0) 172 do { (void)handle; } while(0)
173#define cp_table_unpin(handle) \ 173#define cp_table_unpin(handle) \
174 do { (void)handle; } while(0) 174 do { (void)handle; } while(0)
175#else 175#else
176#define cp_table_alloc(filename, size, opsp) \ 176#define cp_table_alloc(size, opsp) \
177 core_alloc_ex((filename), (size), (opsp)) 177 core_alloc_ex((size), (opsp))
178#define cp_table_free(handle) \ 178#define cp_table_free(handle) \
179 core_free(handle) 179 core_free(handle)
180#define cp_table_get_data(handle) \ 180#define cp_table_get_data(handle) \
@@ -223,7 +223,7 @@ static int alloc_and_load_cp_table(int cp, void *buf)
223 !(size % (off_t)sizeof (uint16_t))) { 223 !(size % (off_t)sizeof (uint16_t))) {
224 224
225 /* if the buffer is provided, use that but don't alloc */ 225 /* if the buffer is provided, use that but don't alloc */
226 int handle = buf ? 0 : cp_table_alloc(filename, size, NULL); 226 int handle = buf ? 0 : cp_table_alloc(size, NULL);
227 if (handle > 0) { 227 if (handle > 0) {
228 cp_table_pin(handle); 228 cp_table_pin(handle);
229 buf = cp_table_get_data(handle); 229 buf = cp_table_get_data(handle);