diff --git a/src/globals/common-tests/embed.c b/src/globals/common-tests/embed.c index 38d8f39f..c6ba0b26 100644 --- a/src/globals/common-tests/embed.c +++ b/src/globals/common-tests/embed.c @@ -1,17 +1,12 @@ #include -int main(int argc,char **argv){ - - PHP_EMBED_START_BLOCK(argc,argv) - +int main(int argc, char **argv) { + PHP_EMBED_START_BLOCK(argc, argv) zend_file_handle file_handle; - - zend_stream_init_filename(&file_handle,"embed.php"); - - if(!php_execute_script(&file_handle)){ + zend_stream_init_filename(&file_handle, "embed.php"); + if(!php_execute_script(&file_handle)) { php_printf("Failed to execute PHP script.\n"); } - PHP_EMBED_END_BLOCK() return 0; }