aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--butl/fdstream2
-rw-r--r--tests/process/driver.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/butl/fdstream b/butl/fdstream
index 71de6a0..990cea0 100644
--- a/butl/fdstream
+++ b/butl/fdstream
@@ -245,7 +245,7 @@ namespace butl
open (const path&, fdopen_mode);
void
- open (int fd) {buf_.open (fd); clear();}
+ open (int fd) {buf_.open (fd); clear ();}
void close ();
bool is_open () const {return buf_.is_open ();}
diff --git a/tests/process/driver.cxx b/tests/process/driver.cxx
index bcf04a7..f93f747 100644
--- a/tests/process/driver.cxx
+++ b/tests/process/driver.cxx
@@ -320,7 +320,7 @@ main (int argc, const char* argv[])
// operation fails.
//
process pr;
- pr.handle = reinterpret_cast<process::handle_type>(-1);
+ pr.handle = reinterpret_cast<process::handle_type> (-1);
assert (!pr.wait (true) && !pr.wait (false));
#endif
}