Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 762ca10

Browse files
anmyachevvnlitvinov
authored andcommittedMar 18, 2019
fix code style
1 parent ea10934 commit 762ca10

File tree

1 file changed

+2
-1
lines changed
  • pandas/_libs/src/parser

1 file changed

+2
-1
lines changed
 

‎pandas/_libs/src/parser/io.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ void *new_file_source(char *fname, size_t buffer_size) {
4949
free(fs);
5050
return NULL;
5151
}
52-
if (MultiByteToWideChar(CP_UTF8, 0, fname, -1, wname, required) < required) {
52+
if (MultiByteToWideChar(CP_UTF8, 0, fname, -1, wname, required) <
53+
required) {
5354
free(wname);
5455
free(fs);
5556
return NULL;

0 commit comments

Comments
 (0)
Please sign in to comment.