summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/fitz/noto.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/fitz/noto.c b/source/fitz/noto.c
index 4bdc133a..70f3bb8f 100644
--- a/source/fitz/noto.c
+++ b/source/fitz/noto.c
@@ -37,9 +37,11 @@
#endif
#define RETURN(NAME) \
+ do {\
extern const int fz_font_ ## NAME ## _size; \
extern const char fz_font_ ## NAME []; \
- return *size = fz_font_ ## NAME ## _size, fz_font_ ## NAME
+ return *size = fz_font_ ## NAME ## _size, fz_font_ ## NAME;\
+ } while (0)
const char *
fz_lookup_base14_font(fz_context *ctx, const char *name, int *size)