summaryrefslogtreecommitdiff
path: root/src/lib/file_group.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-21 01:15:32 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-21 01:15:32 +0100
commite60bb3e51bd1508b149e6b8f6608f09b5196ae26 (patch)
treea7a5b937c9ae138d4eebca8d5130d308bf9ae420 /src/lib/file_group.cc
parentf07d5125a7b609320682689abe40781f096ca25e (diff)
No-op: remove all trailing whitespace.
Diffstat (limited to 'src/lib/file_group.cc')
-rw-r--r--src/lib/file_group.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/file_group.cc b/src/lib/file_group.cc
index 9c8d43204..6f6a5a916 100644
--- a/src/lib/file_group.cc
+++ b/src/lib/file_group.cc
@@ -82,7 +82,7 @@ FileGroup::ensure_open_path (size_t p) const
/* Already open */
return;
}
-
+
if (_current_file) {
fclose (_current_file);
}
@@ -111,9 +111,9 @@ FileGroup::seek (int64_t pos, int whence) const
}
#ifdef DCPOMATIC_WINDOWS
full_pos += _ftelli64 (_current_file);
-#else
+#else
full_pos += ftell (_current_file);
-#endif
+#endif
full_pos += pos;
break;
case SEEK_END: