Skip to content

Commit

Permalink
fix compilation with latest V after vlang/v#23061 (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman authored Dec 4, 2024
1 parent 4582615 commit ce9ff45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpc.v
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub fn (mut rpc RPC) recv() !RPCPacket {
rpc.conn.read(mut data)!
dump(data.bytestr())
return RPCPacket{
op: op
op: int(op)
data: data
}
}
Expand Down

0 comments on commit ce9ff45

Please sign in to comment.