summaryrefslogtreecommitdiff
path: root/include/pso/TTcpSocket.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-03-07 10:07:04 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-03-07 10:07:04 -0400
commit8bb7fa64a9d1abed9b563eca9f95d3ac1a8b6cdc (patch)
treeeae893d13e2fb0ead6373488177a0a3c38dfdf5c /include/pso/TTcpSocket.h
parent8ec0ae94e0a82915d336737b32268978be638524 (diff)
T{Tcp,}Socket: Make `send(u8 *, size_t)` return the proper type
Diffstat (limited to 'include/pso/TTcpSocket.h')
-rw-r--r--include/pso/TTcpSocket.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pso/TTcpSocket.h b/include/pso/TTcpSocket.h
index 6f18c3c..3373e3b 100644
--- a/include/pso/TTcpSocket.h
+++ b/include/pso/TTcpSocket.h
@@ -29,7 +29,7 @@ public:
virtual short close() override;
virtual void recv() override;
virtual short send(u8 *data) override;
- virtual int send(u8 *data, size_t size) override;
+ virtual short send(u8 *data, size_t size) override;
short stat();
void some_stub();