Skip to content

Commit

Permalink
Minor debug string fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aurelienpierre committed Jan 17, 2025
1 parent b42b201 commit d5c1af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/exif.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4484,7 +4484,7 @@ int dt_exif_xmp_write(const int imgid, const char *filename)
if(end > 1000000)
{
dt_control_log(_("The XMP file \n'%s'\n weighs %.2f MB. Writing it will take some time."), filename, (float)end / 1000000);
fprintf(stdout, "The XMP file '%s' weighs %.2f MB. Writing it will take some time.", filename, (float)end / 1000000);
fprintf(stdout, "The XMP file '%s' weighs %.2f MB. Writing it will take some time.\n", filename, (float)end / 1000000);
}

checksum_old = g_compute_checksum_for_data(G_CHECKSUM_MD5, content, end);
Expand Down

0 comments on commit d5c1af7

Please sign in to comment.