]> sigrok.org Git - libsigrok.git/blobdiff - bindings/cxx/classes.cpp
C++: Whitespace fix.
[libsigrok.git] / 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());
 }