summaryrefslogtreecommitdiff
path: root/src/msg.fbs
diff options
context:
space:
mode:
authorAndy Hayden <andyhayden1@gmail.com>2018-11-04 22:21:21 -0800
committerRyan Dahl <ry@tinyclouds.org>2018-11-06 06:43:02 -0800
commit13e1eb2b87c146a8594e7e6f24ba738bff116246 (patch)
tree9b7c8f8adc012073d728f2412ffe41c8ffe8a59b /src/msg.fbs
parentf477b45a0a398e379ecafd2525c460f2793a43c2 (diff)
Fix many of the clippy::pedantic warnings
Diffstat (limited to 'src/msg.fbs')
-rw-r--r--src/msg.fbs22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/msg.fbs b/src/msg.fbs
index 9686c76cb..d5ab926dd 100644
--- a/src/msg.fbs
+++ b/src/msg.fbs
@@ -283,11 +283,11 @@ table ReplStart {
}
table ReplStartRes {
- rid: int;
+ rid: uint32;
}
table ReplReadline {
- rid: int;
+ rid: uint32;
prompt: string;
}
@@ -298,7 +298,7 @@ table ReplReadlineRes {
table Resources {}
table Resource {
- rid: int;
+ rid: uint32;
repr: string;
}
@@ -340,11 +340,11 @@ table Open {
}
table OpenRes {
- rid: int;
+ rid: uint32;
}
table Read {
- rid: int;
+ rid: uint32;
// (ptr, len) is passed as second parameter to libdeno.send().
}
@@ -354,7 +354,7 @@ table ReadRes {
}
table Write {
- rid: int;
+ rid: uint32;
}
table WriteRes {
@@ -362,11 +362,11 @@ table WriteRes {
}
table Close {
- rid: int;
+ rid: uint32;
}
table Shutdown {
- rid: int;
+ rid: uint32;
how: uint;
}
@@ -376,11 +376,11 @@ table Listen {
}
table ListenRes {
- rid: int;
+ rid: uint32;
}
table Accept {
- rid: int;
+ rid: uint32;
}
table Dial {
@@ -390,7 +390,7 @@ table Dial {
// Response to Accept and Dial.
table NewConn {
- rid: int;
+ rid: uint32;
remote_addr: string;
local_addr: string;
}