diff options
| author | Markus Armbruster | 2015-03-06 20:01:05 +0100 |
|---|---|---|
| committer | Markus Armbruster | 2015-06-02 10:07:16 +0200 |
| commit | 489653b5db17679fd61b740dd289c798bb25d7b9 (patch) | |
| tree | f5b12379805bbbed94cc5f67294d8e273b440b95 /include | |
| parent | monitor: Rename monitor_ctrl_mode() to monitor_is_qmp() (diff) | |
| download | qemu-489653b5db17679fd61b740dd289c798bb25d7b9.tar.gz qemu-489653b5db17679fd61b740dd289c798bb25d7b9.tar.xz qemu-489653b5db17679fd61b740dd289c798bb25d7b9.zip | |
monitor: Change return type of monitor_cur_is_qmp() to bool
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/monitor/monitor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/monitor/monitor.h b/include/monitor/monitor.h index d409b6ac56..57f8394a94 100644 --- a/include/monitor/monitor.h +++ b/include/monitor/monitor.h @@ -16,7 +16,7 @@ extern Monitor *default_mon; #define MONITOR_USE_CONTROL 0x04 #define MONITOR_USE_PRETTY 0x08 -int monitor_cur_is_qmp(void); +bool monitor_cur_is_qmp(void); void monitor_init(CharDriverState *chr, int flags); |
