Skip to content

Commit 5b9133b

Browse files
restore
1 parent 28848e3 commit 5b9133b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/fread.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1501,7 +1501,8 @@ int freadMain(freadMainArgs _args) {
15011501
if (eof > sof && (eof[-1] == '\x1A' || eof[-1] == '\0')) {
15021502
char c = eof[-1];
15031503
while (eof > sof && eof[-1] == c) eof--;
1504-
if (verbose) DTPRINT(_(" Last byte(s) of input found to be %s and removed.\n"), c ? "0x1A (Ctrl+Z)" : "0x00 (NUL)");
1504+
if (verbose) DTPRINT(_(" Last byte(s) of input found to be %s and removed.\n"),
1505+
c ? "0x1A (Ctrl+Z)" : "0x00 (NUL)");
15051506
}
15061507
if (eof<=sof) STOP(_("Input is empty or only contains BOM or terminal control characters"));
15071508
}
@@ -1606,7 +1607,8 @@ int freadMain(freadMainArgs _args) {
16061607
pos = ch;
16071608
ch = sof;
16081609
while (ch < pos) row1line += (*ch++ == '\n');
1609-
if (verbose) DTPRINT(_("Found skip='%s' on line %d. Taking this to be header row or first row of data.\n"), args.skipString, row1line);
1610+
if (verbose) DTPRINT(_("Found skip='%s' on line %d. Taking this to be header row or first row of data.\n"),
1611+
args.skipString, row1line);
16101612
ch = pos;
16111613
}
16121614
else if (args.skipNrow >= 0) {

0 commit comments

Comments
 (0)