comparison src/exif.c @ 1179:de19d176bdbd

Fix up format vs type warning.
author zas_
date Wed, 26 Nov 2008 20:37:14 +0000
parents aeae25d5d50d
children 8738237cb029
comparison
equal deleted inserted replaced
1178:f6449c17306b 1179:de19d176bdbd
1647 1647
1648 if (format_raw_img_exif_offsets(map_data, map_len, &offset, NULL) && offset) 1648 if (format_raw_img_exif_offsets(map_data, map_len, &offset, NULL) && offset)
1649 { 1649 {
1650 UnmapData *ud; 1650 UnmapData *ud;
1651 1651
1652 DEBUG_1("%s: offset %lu", path, offset); 1652 DEBUG_1("%s: offset %u", path, offset);
1653 1653
1654 *data_len = map_len - offset; 1654 *data_len = map_len - offset;
1655 ud = g_new(UnmapData, 1); 1655 ud = g_new(UnmapData, 1);
1656 ud->ptr = map_data + offset; 1656 ud->ptr = map_data + offset;
1657 ud->map_data = map_data; 1657 ud->map_data = map_data;