summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-01-09 18:34:44 +0000
committerCarl Hetherington <cth@carlh.net>2015-01-09 18:34:44 +0000
commit319df7d7420a32d7bb8584caf91c39ba8aa3e776 (patch)
tree02cbc356c34fe20e5f4bfac2ba45ea94d0f63494 /src
parent7ca029dea19ab0aa1b7e96d363fe6de61350d2e7 (diff)
Uninitialised variable.
Diffstat (limited to 'src')
-rw-r--r--src/dcp_time.h2
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.