summaryrefslogtreecommitdiffstats
path: root/kpf
diff options
context:
space:
mode:
Diffstat (limited to 'kpf')
-rw-r--r--kpf/src/Server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kpf/src/Server.cpp b/kpf/src/Server.cpp
index 868a88d3..3aa81be2 100644
--- a/kpf/src/Server.cpp
+++ b/kpf/src/Server.cpp
@@ -958,7 +958,7 @@ namespace KPF
int headerBytesWritten = d->socket.writeBlock(data, bytesToWrite);
// <rant>
- // Using -1 to signal an error is fucking evil.
+ // Using -1 to signal an error is evil.
// Return false instead or add a 'bool & ok' parameter.
// If you're not going to use exceptions, at least don't use
// crap C conventions for error handling.