diff options
| author | Hans de Goede | 2013-03-26 11:07:53 +0100 |
|---|---|---|
| committer | Anthony Liguori | 2013-03-27 16:26:48 +0100 |
| commit | 16665b943b23e953220df257e7e04e669aa384d5 (patch) | |
| tree | df22dd6b0c7d6693305b20939ec000f41ce1bf42 /include | |
| parent | compiler: fix warning with GCC 4.8.0 (diff) | |
| download | qemu-16665b943b23e953220df257e7e04e669aa384d5.tar.gz qemu-16665b943b23e953220df257e7e04e669aa384d5.tar.xz qemu-16665b943b23e953220df257e7e04e669aa384d5.zip | |
qemu-char: Rename opened to be_open
Rename the opened variable to be_open to reflect that it contains the
opened state of the backend.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Message-id: 1364292483-16564-2-git-send-email-hdegoede@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/char/char.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/char/char.h b/include/char/char.h index 5c3a7a5756..90443fce3a 100644 --- a/include/char/char.h +++ b/include/char/char.h @@ -74,7 +74,7 @@ struct CharDriverState { int idle_tag; char *label; char *filename; - int opened; + int be_open; int avail_connections; QemuOpts *opts; QTAILQ_ENTRY(CharDriverState) next; |
