From 6244d73850074631ceaaccdf7f755970323f8de2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 29 Sep 2018 12:34:41 +0200 Subject: Use nullptr --- src/SocketWriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/SocketWriter.cpp') diff --git a/src/SocketWriter.cpp b/src/SocketWriter.cpp index f3ab671d..dcba5799 100644 --- a/src/SocketWriter.cpp +++ b/src/SocketWriter.cpp @@ -50,7 +50,7 @@ SocketWriter::bundle_end() { TurtleWriter::bundle_end(); - // Send a NULL byte to indicate end of bundle + // Send a null byte to indicate end of bundle const char end[] = { 0 }; send(_socket->fd(), end, 1, MSG_NOSIGNAL); } -- cgit v1.2.1