Add QTYPE_QERROR handling in the to_json() switch, otherwise GCC will complain.
We just abort(), as QError design is not finished yet. Signed-off-by: Luiz Capitulino <lcapitul...@redhat.com> --- qjson.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/qjson.c b/qjson.c index 491b61e..ca4fe7c 100644 --- a/qjson.c +++ b/qjson.c @@ -239,6 +239,9 @@ static void to_json(const QObject *obj, QString *str) } case QTYPE_NONE: break; + case QTYPE_QERROR: + fprintf(stderr, "qerror can't be emitted yet\n"); + abort(); } } -- 1.6.5.2.155.gbb47