summaryrefslogtreecommitdiff
path: root/src/lib/decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-12-08 11:43:45 +0000
committerCarl Hetherington <cth@carlh.net>2016-12-08 11:43:45 +0000
commit5757f3ba9d2cf3948bcad2b3f3ddbbf09ad754a5 (patch)
tree9567a9a14caf6d953a6e1d9fc602e380825ad706 /src/lib/decoder.cc
parenta28ef704adf8c5bfa45b3d6285f741af64758ceb (diff)
Typo in previous.
Diffstat (limited to 'src/lib/decoder.cc')
-rw-r--r--src/lib/decoder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc
index e538a51d4..114e2ebb4 100644
--- a/src/lib/decoder.cc
+++ b/src/lib/decoder.cc
@@ -26,7 +26,7 @@ using std::cout;
using boost::optional;
void
-Decoder::maybe_seek (opional<ContentTime> position, ContentTime time, bool accurate)
+Decoder::maybe_seek (optional<ContentTime> position, ContentTime time, bool accurate)
{
if (position && (time >= position.get() && time < (position.get() + ContentTime::from_seconds(1)))) {
/* No need to seek: caller should just pass() */