summaryrefslogtreecommitdiff
path: root/build.c
diff options
context:
space:
mode:
Diffstat (limited to 'build.c')
-rwxr-xr-xbuild.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/build.c b/build.c
index 596d2f9..259c013 100755
--- a/build.c
+++ b/build.c
@@ -550,16 +550,16 @@ i32 main(i32 argc, c8 **argv) {
}
fflush(stdout);
- printf(" .. clean"); fflush(stdout);
+ printf(" .. clean\n"); fflush(stdout);
system(fmt("\"." DLM "%s" DLM "test_interprocess\" clean", destination));
- printf(" .. reader"); fflush(stdout);
+ printf(" .. reader\n"); fflush(stdout);
if (OS == WINDOWS)
- system(fmt("start "" /b \"." DLM "%s" DLM "test_interprocess\" reader", destination));
+ system(fmt("start "" \"." DLM "%s" DLM "test_interprocess\" reader", destination));
else
system(fmt("\"." DLM "%s" DLM "test_interprocess\" reader &", destination));
- printf(" .. writer"); fflush(stdout);
+ printf(" .. writer\n"); fflush(stdout);
code = system(fmt("\"." DLM "%s" DLM "test_interprocess\" writer", destination));
- printf(" .. done"); fflush(stdout);
+ printf(" .. done\n"); fflush(stdout);
if (code == 0)
printf("interprocess - OK\n");
else {