From 493475e012ee2c68b2bb6e8ac037847ca2154b7a Mon Sep 17 00:00:00 2001 From: Frediano Ziglio Date: Tue, 13 Aug 2019 18:24:21 +0100 Subject: [PATCH] protocol: Removed unneeded type specifications Default type is already uint8_t. Signed-off-by: Frediano Ziglio Acked-by: Uri Lublin --- spice.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {