diff options
| author | Michael Roth <mdroth@linux.vnet.ibm.com> | 2011-07-19 15:41:52 -0500 |
|---|---|---|
| committer | Luiz Capitulino <lcapitulino@gmail.com> | 2011-07-21 16:48:15 -0300 |
| commit | ac32c7807640f04682ea17bca17c22f8b9264d62 (patch) | |
| tree | a9af216ffb4991e93fb56658c8abe924d5f95cae /qerror.c | |
| parent | b84da8319586e31c2065b1a39aca5ff15e204d5a (diff) | |
| download | focaccia-qemu-ac32c7807640f04682ea17bca17c22f8b9264d62.tar.gz focaccia-qemu-ac32c7807640f04682ea17bca17c22f8b9264d62.zip | |
qerror: add QERR_JSON_PARSE_ERROR to qerror.c
Missing from previous addition of error to qerror.h. Needed for qerror_format() and friends. Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com> Signed-off-by: Luiz Capitulino <lcapitulino@gmail.com>
Diffstat (limited to 'qerror.c')
| -rw-r--r-- | qerror.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qerror.c b/qerror.c index d7fcd93cad..c92adfcb13 100644 --- a/qerror.c +++ b/qerror.c @@ -141,6 +141,11 @@ static const QErrorStringTable qerror_table[] = { .desc = "Invalid JSON syntax", }, { + .error_fmt = QERR_JSON_PARSE_ERROR, + .desc = "JSON parse error, %(message)", + + }, + { .error_fmt = QERR_KVM_MISSING_CAP, .desc = "Using KVM without %(capability), %(feature) unavailable", }, |