# HG changeset patch # User nadvornik # Date 1223403778 0 # Node ID 5a5784eb61df10cc2188a84a31fb4069144c582d # Parent 1646720364cffb2fbe67f7c957404ecaf3b5143d Fixed degree symbol encoding diff -r 1646720364cf -r 5a5784eb61df src/exif-common.c --- a/src/exif-common.c Tue Oct 07 18:20:22 2008 +0000 +++ b/src/exif-common.c Tue Oct 07 18:22:58 2008 +0000 @@ -456,7 +456,7 @@ p2 = (gint)((p - p1)*60); p3 = ((p - p1)*60 - p2)*60; - g_string_append_printf(string, "%0d° %0d' %0.2f\" %.1s", p1, p2, p3, ref); + g_string_append_printf(string, "%0d° %0d' %0.2f\" %.1s", p1, p2, p3, ref); } // if (item && ref) item = exif_get_item(exif, "Exif.GPSInfo.GPSLongitude"); @@ -474,7 +474,7 @@ p2 = (gint)((p - p1)*60); p3 = ((p - p1)*60 - p2)*60; - g_string_append_printf(string, ", %0d° %0d' %0.2f\" %.1s", p1, p2, p3, ref); + g_string_append_printf(string, ", %0d° %0d' %0.2f\" %.1s", p1, p2, p3, ref); } // if (item && ref) text = string->str;