Fixed warning "No new line at end of file"

This commit is contained in:
Xinchen Hui 2013-12-26 17:45:37 +08:00
parent a9b40a20fc
commit aba775fd34
2 changed files with 2 additions and 2 deletions

View file

@ -1216,7 +1216,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";

View file

@ -172,4 +172,4 @@ ZEND_API const char *zend_get_opcode_name(zend_uchar opcode);
#define ZEND_RECV_VARIADIC 164
#define ZEND_SEND_UNPACK 165
#endif
#endif