From ab3a9cd2744482e432ce6b93d1674721efa9bfb6 Mon Sep 17 00:00:00 2001 From: Lephe Date: Sat, 29 Jun 2019 12:01:33 -0400 Subject: [PATCH] fxos: don't assume __VA_OPT__ is supported --- fxos/errors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fxos/errors.h b/fxos/errors.h index a8ab0bd..8fa4e28 100644 --- a/fxos/errors.h +++ b/fxos/errors.h @@ -58,6 +58,6 @@ void err_pop(void); void errf(int flags, char const *str, ...); /* err(): Short error function */ -#define err(str, ...) errf(0, str __VA_OPT__(,) __VA_ARGS__) +#define err(str, ...) errf(0, str, ##__VA_ARGS__) #endif /* FXOS_ERRORS */