diff options
author | Kevin Wolf <kwolf@redhat.com> | 2011-02-09 11:09:38 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2011-02-10 13:23:44 +0100 |
commit | f54e3641122e51c6343d587805422642f307462e (patch) | |
tree | 1bdf8a834ccbfce89188f31fff2079a4caa2518a /qerror.h | |
parent | 8af364884355b3f0c5d60a2d2f427927739658ea (diff) |
qerror: Add QERR_UNKNOWN_BLOCK_FORMAT_FEATURE
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qerror.h')
-rw-r--r-- | qerror.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -165,6 +165,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_UNDEFINED_ERROR \ "{ 'class': 'UndefinedError', 'data': {} }" +#define QERR_UNKNOWN_BLOCK_FORMAT_FEATURE \ + "{ 'class': 'UnknownBlockFormatFeature', 'data': { 'device': %s, 'format': %s, 'feature': %s } }" + #define QERR_VNC_SERVER_FAILED \ "{ 'class': 'VNCServerFailed', 'data': { 'target': %s } }" |