summaryrefslogtreecommitdiffstats
path: root/slobrok/src/tests/standalone/standalone.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'slobrok/src/tests/standalone/standalone.cpp')
-rw-r--r--slobrok/src/tests/standalone/standalone.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/slobrok/src/tests/standalone/standalone.cpp b/slobrok/src/tests/standalone/standalone.cpp
index 55081d1e0a2..7bc4c44695e 100644
--- a/slobrok/src/tests/standalone/standalone.cpp
+++ b/slobrok/src/tests/standalone/standalone.cpp
@@ -57,7 +57,7 @@ namespace {
bool checkOk(FRT_RPCRequest *req)
{
if (req == NULL) {
- fprintf(stderr, "req is null pointer, this is bad");
+ fprintf(stderr, "req is null pointer, this is bad\n");
return false;
}
if (req->IsError()) {
@@ -66,7 +66,7 @@ bool checkOk(FRT_RPCRequest *req)
req->GetErrorMessage());
fprintf(stderr, "req method is: '%s' with params:\n", req->GetMethodName());
req->GetParams()->Print();
- fflush(stdout);
+ fflush(stdout); // flushes output from Print() on previous line
return false;
} else {
return true;