From 57719cc56157d31b69c2176921f77389e18f698f Mon Sep 17 00:00:00 2001 From: Dennis Real Date: Fri, 4 Jan 2013 00:28:29 +0100 Subject: Flash Exposure Compensation (Nikon) --- src/exif_nikon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/exif_nikon.c b/src/exif_nikon.c index 7ee6e86..a223043 100644 --- a/src/exif_nikon.c +++ b/src/exif_nikon.c @@ -212,7 +212,7 @@ static void exn_get_mnote_nikon_18(ExifData *ed, char * buffer, unsigned int max sscanf(buf, "Flash Exposure Compensation: %f", &data); /* libexif buggy here. fix conversion */ - snprintf(buffer, maxsize, "FlashExposureCompensation: %.1f\n", ((float)((signed char)round(data*6.0))) / 6.0 ); + snprintf(buffer, maxsize, "FlashExposureCompensation: %+.1f EV\n", ((float)((signed char)round(data*6.0))) / 6.0 ); } -- cgit v1.2.3