summaryrefslogtreecommitdiff
path: root/src/helper/command.c
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:49:06 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:49:06 +0000
commitc493543fc93cb693abab3146e08314b63d137470 (patch)
treeb6cf56fb5a2cc0d0f7460bae8bd3acec8ceca6f8 /src/helper/command.c
parentdc575dc5bf8cb597a0e9a47794744ae6b1928087 (diff)
downloadopenocd+libswd-c493543fc93cb693abab3146e08314b63d137470.tar.gz
openocd+libswd-c493543fc93cb693abab3146e08314b63d137470.tar.bz2
openocd+libswd-c493543fc93cb693abab3146e08314b63d137470.tar.xz
openocd+libswd-c493543fc93cb693abab3146e08314b63d137470.zip
- Replace '){' with ') {'.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2378 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/command.c')
-rw-r--r--src/helper/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/command.c b/src/helper/command.c
index 61caf345..94c3e464 100644
--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -348,7 +348,7 @@ int unregister_command(command_context_t *context, char *name)
void command_output_text(command_context_t *context, const char *data)
{
- if (context && context->output_handler && data){
+ if (context && context->output_handler && data) {
context->output_handler(context, data);
}
}