summaryrefslogtreecommitdiff
path: root/src/grp-boot/systemd-boot/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/grp-boot/systemd-boot/util.h')
-rw-r--r--src/grp-boot/systemd-boot/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grp-boot/systemd-boot/util.h b/src/grp-boot/systemd-boot/util.h
index e673cdf9a0..e2da8b3fee 100644
--- a/src/grp-boot/systemd-boot/util.h
+++ b/src/grp-boot/systemd-boot/util.h
@@ -22,7 +22,7 @@
#define ELEMENTSOF(x) (sizeof(x)/sizeof((x)[0]))
static inline const CHAR16 *yes_no(BOOLEAN b) {
- return b ? L"yes" : L"no";
+ return b ? (CHAR16*)L"yes" : (CHAR16*)L"no";
}
EFI_STATUS parse_boolean(CHAR8 *v, BOOLEAN *b);