mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 02:17:35 +00:00
Do a pass of compiler warning fixes.
This is really making me question not using 64-bit integers more.
This commit is contained in:
parent
243e1d8462
commit
58240fdb33
21 changed files with 89 additions and 84 deletions
|
@ -158,7 +158,7 @@ void IRCClient::process_line(ByteBuffer&& line)
|
|||
|
||||
void IRCClient::send(const String& text)
|
||||
{
|
||||
if (!m_socket->send(ByteBuffer::wrap((void*)text.characters(), text.length()))) {
|
||||
if (!m_socket->send(ByteBuffer::wrap(text.characters(), text.length()))) {
|
||||
perror("send");
|
||||
exit(1);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue