diff options
-rw-r--r-- | lib/OutPipe.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/OutPipe.cc b/lib/OutPipe.cc index 9e60b15..35d23d3 100644 --- a/lib/OutPipe.cc +++ b/lib/OutPipe.cc @@ -27,5 +27,5 @@ bool OutPipe::CanRead() { } String OutPipe::GetName() { - return (String("Input pipe from stdout (") + (hooked ? "" : "not ") + "hooked)"); + return (String("Output pipe to stdin (") + (hooked ? "" : "not ") + "hooked)"); } |