diff options
author | Hans de Goede <hdegoede@redhat.com> | 2013-03-26 11:07:53 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-03-27 10:26:48 -0500 |
commit | 16665b943b23e953220df257e7e04e669aa384d5 (patch) | |
tree | df22dd6b0c7d6693305b20939ec000f41ce1bf42 /include | |
parent | 99835e00849369bab726a4dc4ceed1f6f9ed967c (diff) |
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; |