qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 6/9] QJSON: Fix compile error


From: Luiz Capitulino
Subject: [Qemu-devel] [PATCH 6/9] QJSON: Fix compile error
Date: Thu, 12 Nov 2009 18:42:31 -0200

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 <address@hidden>
---
 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





reply via email to

[Prev in Thread] Current Thread [Next in Thread]