]> sigrok.org Git - libsigrok.git/commitdiff
C++: Whitespace fix.
authorMartin Ling <redacted>
Sat, 6 Sep 2014 16:28:27 +0000 (17:28 +0100)
committerUwe Hermann <redacted>
Mon, 8 Sep 2014 17:27:38 +0000 (19:27 +0200)
bindings/cxx/classes.cpp

index 3043ba51b318caf15d37aa5aab2be6e0be190247..8ecffd720677cb4abff40610f3d37512adf5c655 100644 (file)
@@ -229,7 +229,7 @@ shared_ptr<Input> 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<Input>(
                new Input(shared_from_this(), input), Input::Deleter());
 }