1 diff --git a/libs/lensfun/lens.cpp b/libs/lensfun/lens.cpp
2 index 52b76658..b8430609 100644
3 --- a/libs/lensfun/lens.cpp
4 +++ b/libs/lensfun/lens.cpp
5 @@ -66,9 +66,10 @@ lfLens::lfLens (const lfLens &other)
8 const char* const* otherMounts = other.GetMountNames();
9 - for (int i = 0; otherMounts[i]; i++)
10 - AddMount(otherMounts[i]);
13 + for (int i = 0; otherMounts[i]; i++)
14 + AddMount(otherMounts[i]);
16 for (auto *calibset : other.Calibrations)
17 Calibrations.push_back(new lfLensCalibrationSet(*calibset));
19 @@ -96,9 +97,10 @@ lfLens &lfLens::operator = (const lfLens &other)
22 const char* const* otherMounts = other.GetMountNames();
23 - for (int i = 0; otherMounts[i]; i++)
24 - AddMount(otherMounts[i]);
27 + for (int i = 0; otherMounts[i]; i++)
28 + AddMount(otherMounts[i]);
30 for (auto *calibset : Calibrations)
33 diff --git a/libs/lensfun/mount.cpp b/libs/lensfun/mount.cpp
34 index bd875baa..86f667cb 100644
35 --- a/libs/lensfun/mount.cpp
36 +++ b/libs/lensfun/mount.cpp
37 @@ -28,8 +28,10 @@ lfMount::lfMount (const lfMount &other)
40 const char* const* otherMounts = other.GetCompats();
41 - for (int i = 0; otherMounts[i]; i++)
42 - AddCompat(otherMounts[i]);
44 + for (int i = 0; otherMounts[i]; i++)
45 + AddCompat(otherMounts[i]);
49 lfMount &lfMount::operator = (const lfMount &other)
50 @@ -40,9 +42,10 @@ lfMount &lfMount::operator = (const lfMount &other)
53 const char* const* otherMounts = other.GetCompats();
54 - for (int i = 0; otherMounts[i]; i++)
55 - AddCompat(otherMounts[i]);
58 + for (int i = 0; otherMounts[i]; i++)
59 + AddCompat(otherMounts[i]);