File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments