summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-04-07 17:56:04 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-04-07 17:56:04 +0200
commit221ef48e428a06a9021d90a7eb7dd69e46ce8582 (patch)
tree2390dbdc627639340027238b82359021683fc005
parentf80cbcd9bb3764231afc520b177e056c766e6c51 (diff)
typos
-rw-r--r--src/ImageMetaData.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ImageMetaData.cxx b/src/ImageMetaData.cxx
index f786344..a4e7174 100644
--- a/src/ImageMetaData.cxx
+++ b/src/ImageMetaData.cxx
@@ -134,16 +134,16 @@ ImageMetaData::load_image_exif(char *name) {
exifSetValue(&_focal_length, &exifData, "Exif.Photo.FocalLength");
if (isnan(_focal_length_35mm))
- exifSetValue(&_focal_length, &exifData, "Exif.Photo.FocalLengthIn35mmFilm");
+ exifSetValue(&_focal_length_35mm, &exifData, "Exif.Photo.FocalLengthIn35mmFilm");
if (isnan(_longitude))
exifSetCoordinate(&_longitude, &exifData, "Exif.GPSInfo.GPSLongitude");
if (isnan(_latitude))
- exifSetCoordinate(&_longitude, &exifData, "Exif.GPSInfo.GPSLatitude");
+ exifSetCoordinate(&_latitude, &exifData, "Exif.GPSInfo.GPSLatitude");
if (isnan(_height))
- exifSetValue(&_focal_length, &exifData, "Exif.GPSInfo.GPSAltitude");
+ exifSetValue(&_height, &exifData, "Exif.GPSInfo.GPSAltitude");
return 0;
}