From 8bb7fa64a9d1abed9b563eca9f95d3ac1a8b6cdc Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Tue, 7 Mar 2023 10:07:04 -0400 Subject: T{Tcp,}Socket: Make `send(u8 *, size_t)` return the proper type --- include/pso/TTcpSocket.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/pso/TTcpSocket.h') 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(); -- cgit v1.2.3-13-gbd6f