File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ void Commander::run(char* user_input){
62
62
switch (id){
63
63
case CMD_SCAN:
64
64
for (int i=0 ; i < call_count; i++){
65
- printMachineReadable (F ( " ? " ) );
65
+ printMachineReadable (CMD_SCAN );
66
66
print (call_ids[i]);
67
67
print (" :" );
68
68
if (call_label[i]) println (call_label[i]);
@@ -72,6 +72,7 @@ void Commander::run(char* user_input){
72
72
case CMD_VERBOSE:
73
73
if (!isSentinel (user_input[1 ])) verbose = (VerboseMode)atoi (&user_input[1 ]);
74
74
printVerbose (F (" Verb:" ));
75
+ printMachineReadable (CMD_VERBOSE);
75
76
switch (verbose){
76
77
case VerboseMode::nothing:
77
78
println (F (" off!" ));
@@ -88,7 +89,7 @@ void Commander::run(char* user_input){
88
89
case CMD_DECIMAL:
89
90
if (!isSentinel (user_input[1 ])) decimal_places = atoi (&user_input[1 ]);
90
91
printVerbose (F (" Decimal:" ));
91
- printMachineReadable (F ( " # " ) );
92
+ printMachineReadable (CMD_DECIMAL );
92
93
println (decimal_places);
93
94
break ;
94
95
default :
You can’t perform that action at this time.
0 commit comments