diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-01-09 18:34:44 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-01-09 18:34:44 +0000 |
| commit | 319df7d7420a32d7bb8584caf91c39ba8aa3e776 (patch) | |
| tree | 02cbc356c34fe20e5f4bfac2ba45ea94d0f63494 | |
| parent | 7ca029dea19ab0aa1b7e96d363fe6de61350d2e7 (diff) | |
Uninitialised variable.
| -rw-r--r-- | src/dcp_time.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dcp_time.h b/src/dcp_time.h index 58b8a75d..23f99b80 100644 --- a/src/dcp_time.h +++ b/src/dcp_time.h @@ -37,7 +37,7 @@ namespace libdcp { class Time { public: - Time () : h (0), m (0), s (0), e (0) {} + Time () : h (0), m (0), s (0), e (0), tcr (1) {} /** Construct a Time from a frame index (starting from 0), * a frames per second count and a timecode rate. |
