summaryrefslogtreecommitdiffstats
path: root/exif.c
diff options
context:
space:
mode:
authorBert Münnich <ber.t@gmx.com>2012-02-15 19:37:19 +0100
committerBert Münnich <ber.t@gmx.com>2012-02-15 19:37:19 +0100
commit011dac90c83d5440f2f228deab93f264d87b15d0 (patch)
tree27a48a8e5348dfc210890f33521898bef32604ec /exif.c
parenta329615c684c68700134aaed6b5e172ff9924130 (diff)
downloadnsxiv-011dac90c83d5440f2f228deab93f264d87b15d0.tar.zst
Removed debug output
Diffstat (limited to 'exif.c')
-rw-r--r--exif.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/exif.c b/exif.c
index 07a89ac..5244028 100644
--- a/exif.c
+++ b/exif.c
@@ -117,7 +117,6 @@ int exif_orientation(const fileinfo_t *file) {
for (idx += 2; cnt > 0 && idx < len - 12; cnt--, idx += 12) {
if (btous(data + idx, order) == EXIF_TAG_ORIENTATION) {
val = btous(data + idx + 8, order);
- printf("exif orientation: %s: %u\n", file->name, val);
break;
}
}