comparison src/exif-common.c @ 506:fc9c8a3e1a8b

Handle the newline in DEBUG_N() macro instead of adding one in each debug message string.
author zas_
date Thu, 24 Apr 2008 00:15:03 +0000
parents c7a2471e5c4e
children 135570a8bd96
comparison
equal deleted inserted replaced
505:60f75a9799b2 506:fc9c8a3e1a8b
642 g_free(cp_data); 642 g_free(cp_data);
643 return FALSE; 643 return FALSE;
644 } 644 }
645 memcpy(cp_data, data + chunk_offset[i], chunk_length[i]); 645 memcpy(cp_data, data + chunk_offset[i], chunk_length[i]);
646 } 646 }
647 DEBUG_1("Found embedded icc profile in jpeg\n"); 647 DEBUG_1("Found embedded icc profile in jpeg");
648 exif_add_jpeg_color_profile(exif, cp_data, cp_length); 648 exif_add_jpeg_color_profile(exif, cp_data, cp_length);
649 649
650 return TRUE; 650 return TRUE;
651 } 651 }
652 652