diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-08 12:36:50 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-08 12:36:50 +0000 |
| commit | 24334403a364fcaf5b9708fa163c59909fec21fe (patch) | |
| tree | b52665099743979b55de8f8cc88f94861487da8e /src/lib | |
| parent | d45689e1552f21d2840c0fbeac3956319575db3d (diff) | |
Fix previous.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/writer.cc | 2 | ||||
| -rw-r--r-- | src/lib/writer.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc index 5d53cbbe2..8d9b5855e 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -174,7 +174,7 @@ Writer::write (shared_ptr<const AudioBuffers> audio) /** This must be called from Writer::thread() with an appropriate lock held */ bool -Writer::have_sequenced_image_at_queue_head () const +Writer::have_sequenced_image_at_queue_head () { if (_queue.empty ()) { return false; diff --git a/src/lib/writer.h b/src/lib/writer.h index 17ce42572..842d6a55d 100644 --- a/src/lib/writer.h +++ b/src/lib/writer.h @@ -85,7 +85,7 @@ private: void thread (); void check_existing_picture_mxf (); bool check_existing_picture_mxf_frame (FILE *, int, Eyes); - bool have_sequenced_image_at_queue_head () const; + bool have_sequenced_image_at_queue_head (); /** our Film */ boost::shared_ptr<const Film> _film; |
