Skip to content

Commit fc1005e

Browse files
committed
merged dtprints
1 parent 4f84d3c commit fc1005e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/fread.c

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1730,8 +1730,9 @@ int freadMain(freadMainArgs _args) {
17301730
topQuoteRule = quoteRule;
17311731
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)
17321732
if (verbose) {
1733-
DTPRINT((unsigned)sep<32 ? " sep=%#02x" : " sep='%c'", sep); // # notranslate
1734-
DTPRINT(_(" with %d fields using quote rule %d\n"), topNumFields, quoteRule);
1733+
DTPRINT((unsigned)sep<32 ? " sep=%#02x with %d fields using quote rule %d\n"
1734+
: " sep='%c' with %d fields using quote rule %d\n",
1735+
sep, topNumFields, quoteRule);
17351736
}
17361737
}
17371738
} else {
@@ -1780,8 +1781,9 @@ int freadMain(freadMainArgs _args) {
17801781
topSkip = thisRow-thisBlockLines;
17811782
if (topSkip<0) topSkip=0; // inelegant but will do for now to pass single row input such as test 890
17821783
if (verbose) {
1783-
DTPRINT((unsigned)sep<32 ? " sep=%#02x" : " sep='%c'", sep); // # notranslate
1784-
DTPRINT(_(" with %d lines of %d fields using quote rule %d\n"), topNumLines, topNumFields, topQuoteRule);
1784+
DTPRINT((unsigned)sep<32 ? " sep=%#02x with %d lines of %d fields using quote rule %d\n"
1785+
: " sep='%c' with %d lines of %d fields using quote rule %d\n",
1786+
sep, topNumLines, topNumFields, topQuoteRule);
17851787
}
17861788
}
17871789
}

0 commit comments

Comments
 (0)