mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-05-05 06:27:59 +02:00
Print out \r\n on windows, not just \n
This should hopefully fix bug #17053
This commit is contained in:
parent
e04ee5a1b8
commit
25e8ca84ac
1 changed files with 4 additions and 0 deletions
4
main.c
4
main.c
|
|
@ -645,7 +645,11 @@ main (int argc, char **argv)
|
|||
}
|
||||
|
||||
if (need_newline)
|
||||
#ifdef G_OS_WIN32
|
||||
printf ("\r\n");
|
||||
#else
|
||||
printf ("\n");
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue