From 85465051e0e8a79c3c1df3187c2acaacb10d6232 Mon Sep 17 00:00:00 2001 From: Luiz Capitulino Date: Fri, 27 Jul 2012 13:58:30 -0300 Subject: qerror: qerror_table: don't use C99 struct initializers This allows for changing QERR_ macros to initialize two struct members at the same time. See next commit for more details. Signed-off-by: Luiz Capitulino Reviewed-by: Markus Armbruster --- qerror.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qerror.h') diff --git a/qerror.h b/qerror.h index 52ce58dbc2..2e6a49d3f3 100644 --- a/qerror.h +++ b/qerror.h @@ -19,8 +19,8 @@ #include typedef struct QErrorStringTable { - const char *desc; const char *error_fmt; + const char *desc; } QErrorStringTable; typedef struct QError { -- cgit v1.2.1