summaryrefslogtreecommitdiff
path: root/libs/ardour/location.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/location.cc')
-rw-r--r--libs/ardour/location.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/location.cc b/libs/ardour/location.cc
index 1b4b5a87c1..0ff707a80d 100644
--- a/libs/ardour/location.cc
+++ b/libs/ardour/location.cc
@@ -65,7 +65,7 @@ Location::Location (Session& s)
, _flags (Flags (0))
, _locked (false)
, _position_lock_style (AudioTime)
- , _timestamp(time(0))
+ , _timestamp (time (0))
{
assert (_start >= 0);
assert (_end >= 0);
@@ -80,7 +80,7 @@ Location::Location (Session& s, samplepos_t sample_start, samplepos_t sample_end
, _flags (bits)
, _locked (false)
, _position_lock_style (s.config.get_glue_new_markers_to_bars_and_beats() ? MusicTime : AudioTime)
- , _timestamp(time(0))
+ , _timestamp (time (0))
{
recompute_beat_from_samples (sub_num);
@@ -98,7 +98,7 @@ Location::Location (const Location& other)
, _end_beat (other._end_beat)
, _flags (other._flags)
, _position_lock_style (other._position_lock_style)
- , _timestamp(time(0))
+ , _timestamp (time (0))
{
/* copy is not locked even if original was */
@@ -114,7 +114,7 @@ Location::Location (Session& s, const XMLNode& node)
: SessionHandleRef (s)
, _flags (Flags (0))
, _position_lock_style (AudioTime)
- , _timestamp(time(0))
+ , _timestamp (time (0))
{
/* Note: _position_lock_style is initialised above in case set_state doesn't set it
(for 2.X session file compatibility).