diff options
author | Peter Eisentraut | 2016-02-12 17:08:40 +0000 |
---|---|---|
committer | Peter Eisentraut | 2016-02-12 17:08:40 +0000 |
commit | 29b4b7bda64d751e1c66d8b7cab222b53781aafb (patch) | |
tree | fa42890cd011c8eab94108951928c232294bb5aa | |
parent | 99a9d6d563f389ad8137984aac13c9c0bd37cb66 (diff) |
Fix whitespace
-rw-r--r-- | src/test/isolation/isolationtester.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/isolation/isolationtester.c b/src/test/isolation/isolationtester.c index 7a06859854..5e50a873a6 100644 --- a/src/test/isolation/isolationtester.c +++ b/src/test/isolation/isolationtester.c @@ -439,10 +439,10 @@ report_multiple_error_messages(Step *step, int nextra, Step **extrastep) initPQExpBuffer(&buffer); appendPQExpBufferStr(&buffer, step->name); - + for (n = 0; n < nextra; ++n) appendPQExpBuffer(&buffer, " %s", extrastep[n]->name); - + if (step->errormsg) { fprintf(stdout, "error in steps %s: %s\n", buffer.data, @@ -460,7 +460,7 @@ report_multiple_error_messages(Step *step, int nextra, Step **extrastep) free(extrastep[n]->errormsg); extrastep[n]->errormsg = NULL; } - + termPQExpBuffer(&buffer); } @@ -779,7 +779,7 @@ try_complete_step(Step *step, int flags) td += (int64) current_time.tv_usec - (int64) start_time.tv_usec; /* - * After 60 seconds, try to cancel the query. + * After 60 seconds, try to cancel the query. * * If the user tries to test an invalid permutation, we don't * want to hang forever, especially when this is running in the |