No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / data.cc
index 92b0b19d53380590fb2071b43d646612a45a058b..5975ff6fc776d8808c1c07089046ad368cc6dffd 100644 (file)
@@ -54,13 +54,13 @@ Data::Data (boost::filesystem::path file)
        if (!f) {
                throw FileError (_("could not open file for reading"), file);
        }
-       
+
        size_t const r = fread (_data.get(), 1, _size, f);
        if (r != size_t (_size)) {
                fclose (f);
                throw FileError (_("could not read from file"), file);
        }
-               
+
        fclose (f);
 }