Skip to content

Commit 4d78598

Browse files
mvoriseknikic
authored andcommitted
Remove spaces around version built type
1 parent b74f5ee commit 4d78598

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

sapi/cli/php_cli.c

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -641,26 +641,24 @@ static int do_cli(int argc, char **argv) /* {{{ */
641641
goto out;
642642

643643
case 'v': /* show php version & quit */
644-
php_printf("PHP %s (%s) (built: %s %s) ( %s)\nCopyright (c) The PHP Group\n%s",
644+
php_printf("PHP %s (%s) (built: %s %s) (%s)\nCopyright (c) The PHP Group\n%s",
645645
PHP_VERSION, cli_sapi_module.name, __DATE__, __TIME__,
646646
#ifdef ZTS
647-
"ZTS "
647+
"ZTS"
648648
#else
649-
"NTS "
649+
"NTS"
650650
#endif
651651
#ifdef PHP_BUILD_COMPILER
652-
PHP_BUILD_COMPILER
653-
" "
652+
" " PHP_BUILD_COMPILER
654653
#endif
655654
#ifdef PHP_BUILD_ARCH
656-
PHP_BUILD_ARCH
657-
" "
655+
" " PHP_BUILD_ARCH
658656
#endif
659657
#if ZEND_DEBUG
660-
"DEBUG "
658+
" DEBUG"
661659
#endif
662660
#ifdef HAVE_GCOV
663-
"GCOV "
661+
" GCOV"
664662
#endif
665663
,
666664
get_zend_version()

0 commit comments

Comments
 (0)