diff options
Diffstat (limited to '')
-rw-r--r-- | src/action.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/action.cpp b/src/action.cpp index 7a7bbb8..c594792 100644 --- a/src/action.cpp +++ b/src/action.cpp | |||
@@ -25,9 +25,9 @@ void Action::add( Command *pCmd ) | |||
25 | void Action::debug() | 25 | void Action::debug() |
26 | { | 26 | { |
27 | if( bDefault ) | 27 | if( bDefault ) |
28 | printf("action default:\n"); | 28 | printf(" action default:\n"); |
29 | else | 29 | else |
30 | printf("action \"%s\":\n", sName.getString() ); | 30 | printf(" action \"%s\":\n", sName.getString() ); |
31 | 31 | ||
32 | for( std::list<Command *>::iterator i = lCommand.begin(); | 32 | for( std::list<Command *>::iterator i = lCommand.begin(); |
33 | i != lCommand.end(); i++ ) | 33 | i != lCommand.end(); i++ ) |