diff options
author | Sebastian Jennen <sebastian.jennen@gmx.de> | 2019-07-27 09:47:32 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2019-07-27 10:12:54 +0200 |
commit | a2b2aaa67a834d014d2f800cc65c86cb557cac61 (patch) | |
tree | eacf4ecacd77d1ab3436f4e2d835a80056c39411 | |
parent | f1c4b48c840bc65782e77728feea9aa2e1268ca6 (diff) | |
download | php-git-a2b2aaa67a834d014d2f800cc65c86cb557cac61.tar.gz |
file encoding cleanup: remove bom in win32 files
These two files have been: "UTF-8 Unicode (with BOM) text".
By applying `dos2unix` on these files the BOM has been removed.
I checked the whole source code with dos2unix:
These were the only two text files affected.
-rw-r--r-- | win32/select.c | 2 | ||||
-rw-r--r-- | win32/sendmail.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/win32/select.c b/win32/select.c index 810130c970..b02766e4f3 100644 --- a/win32/select.c +++ b/win32/select.c @@ -1,4 +1,4 @@ -/* +/* +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ diff --git a/win32/sendmail.c b/win32/sendmail.c index 00063931ea..98b61ec920 100644 --- a/win32/sendmail.c +++ b/win32/sendmail.c @@ -1,4 +1,4 @@ -/* +/* * PHP Sendmail for Windows. * * This file is rewritten specificly for PHPFI. Some functionality |