From: Martin Ling Date: Sat, 6 Sep 2014 16:28:27 +0000 (+0100) Subject: C++: Whitespace fix. X-Git-Tag: libsigrok-0.4.0~1022 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=d4cf45e516eec56267e6f7aae087e3fb040af67b C++: Whitespace fix. --- diff --git a/bindings/cxx/classes.cpp b/bindings/cxx/classes.cpp index 3043ba51..8ecffd72 100644 --- a/bindings/cxx/classes.cpp +++ b/bindings/cxx/classes.cpp @@ -229,7 +229,7 @@ shared_ptr Context::open_file(string filename) { const struct sr_input *input; - check( sr_input_scan_file(filename.c_str(), &input)); + check(sr_input_scan_file(filename.c_str(), &input)); return shared_ptr( new Input(shared_from_this(), input), Input::Deleter()); }