diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-02-05 01:06:25 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-02-05 01:06:25 +0000 |
| commit | 6f3505df53239cb0119519ad8318044b74d6e9d9 (patch) | |
| tree | 4e5086d976b825ec6e8e80c10fd4431752f46c3a /src/tools/dcpomatic_kdm_cli.cc | |
| parent | 1650f9f85c3f110cc9cf8d8e2df01fcdd933fdee (diff) | |
Warning fixes.
Diffstat (limited to 'src/tools/dcpomatic_kdm_cli.cc')
| -rw-r--r-- | src/tools/dcpomatic_kdm_cli.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_kdm_cli.cc b/src/tools/dcpomatic_kdm_cli.cc index 5e75266ea..3287fc651 100644 --- a/src/tools/dcpomatic_kdm_cli.cc +++ b/src/tools/dcpomatic_kdm_cli.cc @@ -394,7 +394,7 @@ dump_dkdm_group (shared_ptr<DKDMGroup> group, int indent) if (g) { dump_dkdm_group (g, indent + 2); } else { - for (int i = 0; i < indent; ++i) { + for (int j = 0; j < indent; ++j) { cout << " "; } shared_ptr<DKDM> d = dynamic_pointer_cast<DKDM>(i); |
