diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2020-11-16 14:58:09 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2020-11-16 19:40:34 +0100 |
commit | 769017b76062c90eab6e5b2b96c019c0935e938e (patch) | |
tree | a1c4c73ce96ae38759ab603c7c26a4dfe7e6105d /vcl/source | |
parent | a27966454efc25591fe198548d38e5eafe443a68 (diff) |
fix loplugin indentation warning
Change-Id: Ib444bec4af79886c52979d3fbbb6b4a55b3cf3fd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105938
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/filter/jpeg/transupp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/filter/jpeg/transupp.c b/vcl/source/filter/jpeg/transupp.c index 68ea3620a2f9..d26cb9510009 100644 --- a/vcl/source/filter/jpeg/transupp.c +++ b/vcl/source/filter/jpeg/transupp.c @@ -1232,9 +1232,9 @@ adjust_exif_parameters (JOCTET FAR * data, unsigned int length, } if (tagnum == 0xA002 || tagnum == 0xA003) { if (tagnum == 0xA002) - new_value = new_width; /* ExifImageWidth Tag */ + new_value = new_width; /* ExifImageWidth Tag */ else - new_value = new_height; /* ExifImageHeight Tag */ + new_value = new_height; /* ExifImageHeight Tag */ if (is_motorola) { data[offset+2] = 0; /* Format = unsigned long (4 octets) */ data[offset+3] = 4; |