[Spice-commits] spice.proto
GitLab Mirror
gitlab-mirror at kemper.freedesktop.org
Wed Aug 14 09:33:11 UTC 2019
spice.proto | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 493475e012ee2c68b2bb6e8ac037847ca2154b7a
Author: Frediano Ziglio <fziglio at redhat.com>
Date: Tue Aug 13 18:24:21 2019 +0100
protocol: Removed unneeded type specifications
Default type is already uint8_t.
Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
Acked-by: Uri Lublin <uril at redhat.com>
diff --git a/spice.proto b/spice.proto
index 3bbec0c..34ba3c8 100644
--- a/spice.proto
+++ b/spice.proto
@@ -109,7 +109,7 @@ message Empty {
} @declare;
message Data {
- uint8 data[] @end @ctype(uint8_t);
+ uint8 data[] @end;
} @nocopy @declare;
enum8 data_compression_type {
@@ -156,7 +156,7 @@ channel BaseChannel {
message {
uint32 id;
uint64 timestamp;
- uint8 data[] @ctype(uint8_t) @as_ptr(data_len);
+ uint8 data[] @as_ptr(data_len);
} @declare ping;
message {
More information about the Spice-commits
mailing list