summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDaniel P. Berrange <berrange@redhat.com>2016-02-12 16:45:31 +0000
committerTimothy Pearson <tpearson@raptorengineering.com>2019-11-29 19:45:28 -0600
commit17df4ef0c7512abb10ceddad801d7849973bc211 (patch)
tree7c21f619e773ec8b41d9748290c8092beb9f5332 /include
parentfc18bab043b0db191f24ca25d845e189e07c4b43 (diff)
downloadhqemu-17df4ef0c7512abb10ceddad801d7849973bc211.zip
hqemu-17df4ef0c7512abb10ceddad801d7849973bc211.tar.gz
io: convert QIOChannelBuffer to use uint8_t instead of char
The QIOChannelBuffer struct uses a 'char *' for its data buffer. It will give simpler type compatibility with the migration APIs if it uses 'uint8_t *' instead, avoiding several casts. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/io/channel-buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/io/channel-buffer.h b/include/io/channel-buffer.h
index 91a52b3..65c498b 100644
--- a/include/io/channel-buffer.h
+++ b/include/io/channel-buffer.h
@@ -42,7 +42,7 @@ struct QIOChannelBuffer {
size_t capacity; /* Total allocated memory */
size_t usage; /* Current size of data */
size_t offset; /* Offset for future I/O ops */
- char *data;
+ uint8_t *data;
};
OpenPOWER on IntegriCloud