Skip to content

Commit c8d408f

Browse files
committed
left justify oplines
1 parent fdde4aa commit c8d408f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

phpdbg_prompt.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@ void phpdbg_print_opline_ex(zend_execute_data *execute_data, HashTable *vars, ze
10961096
(!(PHPDBG_G(flags) & PHPDBG_IS_QUIET) ||
10971097
(PHPDBG_G(flags) & PHPDBG_IS_STEPPING))) {
10981098
/* output line info */
1099-
phpdbg_notice("#%- 5lu %16p %30s %s %s",
1099+
phpdbg_notice("#%- 5lu %16p %-30s %s %s",
11001100
opline->lineno,
11011101
opline,
11021102
phpdbg_decode_opcode(opline->opcode),
@@ -1105,7 +1105,7 @@ void phpdbg_print_opline_ex(zend_execute_data *execute_data, HashTable *vars, ze
11051105
}
11061106

11071107
if (!ignore_flags && PHPDBG_G(oplog)) {
1108-
phpdbg_log_ex(PHPDBG_G(oplog), "#%- 5lu %16p %30s %s %s",
1108+
phpdbg_log_ex(PHPDBG_G(oplog), "#%- 5lu %16p %-30s %s %s",
11091109
opline->lineno,
11101110
opline,
11111111
phpdbg_decode_opcode(opline->opcode),

0 commit comments

Comments
 (0)