diff --git a/src/fread.c b/src/fread.c index 3549d8af05..0ca41810c4 100644 --- a/src/fread.c +++ b/src/fread.c @@ -1730,8 +1730,10 @@ int freadMain(freadMainArgs _args) { topQuoteRule = quoteRule; firstJumpEnd = ch; // to know how many bytes jump 0 is, for nrow estimate later (a less-good estimate when fill=true since line lengths vary more) if (verbose) { - DTPRINT((unsigned)sep<32 ? " sep=%#02x" : " sep='%c'", sep); // # notranslate - DTPRINT(_(" with %d fields using quote rule %d\n"), topNumFields, quoteRule); + DTPRINT((unsigned)sep<32 + ? _(" sep=%#02x with %d fields using quote rule %d\n") + : _(" sep='%c' with %d fields using quote rule %d\n"), + sep, topNumFields, quoteRule); } } } else { @@ -1780,8 +1782,10 @@ int freadMain(freadMainArgs _args) { topSkip = thisRow-thisBlockLines; if (topSkip<0) topSkip=0; // inelegant but will do for now to pass single row input such as test 890 if (verbose) { - DTPRINT((unsigned)sep<32 ? " sep=%#02x" : " sep='%c'", sep); // # notranslate - DTPRINT(_(" with %d lines of %d fields using quote rule %d\n"), topNumLines, topNumFields, topQuoteRule); + DTPRINT((unsigned)sep<32 + ? _(" sep=%#02x with %d lines of %d fields using quote rule %d\n") + : _(" sep='%c' with %d lines of %d fields using quote rule %d\n"), + sep, topNumLines, topNumFields, topQuoteRule); } } }