From: Lior Kaplan Date: Tue, 1 Jul 2014 08:44:39 +0000 (+0300) Subject: Make sure the generator script also creates a newline at the end of file X-Git-Tag: php-5.5.15RC1~15^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=716d2a3937b4590772212b563127810eb4aad672;p=php Make sure the generator script also creates a newline at the end of file Similar to commit d6713f39 in master --- diff --git a/Zend/zend_vm_gen.php b/Zend/zend_vm_gen.php index 4bab9e5e3d..2e244eb5ad 100644 --- a/Zend/zend_vm_gen.php +++ b/Zend/zend_vm_gen.php @@ -1210,7 +1210,7 @@ function gen_vm($def, $skel) { fputs($f,"#define $op $code\n"); } - fputs($f, "\n#endif"); + fputs($f, "\n#endif\n"); fclose($f); echo "zend_vm_opcodes.h generated successfully.\n";