Browse Source

(#16) remove extrac semicolon

rexim 4 years ago
parent
commit
c9145ad24b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      nobuild.h

+ 1 - 1
nobuild.h

@@ -245,7 +245,7 @@ Pipe nobuild__make_pipe(int ignore, ...);
 #ifdef _WIN32
 #define PIPE(...) PANIC("Piping is not implemented on windows yet")
 #else
-#define PIPE(...) nobuild__posix_spawn_pipe(nobuild__make_pipe(69, __VA_ARGS__, NULL));
+#define PIPE(...) nobuild__posix_spawn_pipe(nobuild__make_pipe(69, __VA_ARGS__, NULL))
 #endif // _WIN32
 
 // TODO(#17): IN and OUT are already taken by WinAPI