From 6358547a434a30283c7eeacab6e6f822fd2073d2 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Fri, 14 Jul 2006 13:33:58 +0000 Subject: More whitespace changes. svn-id: r23496 --- common/debugger.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common') diff --git a/common/debugger.cpp b/common/debugger.cpp index 0771e65720..e0ad40eea9 100644 --- a/common/debugger.cpp +++ b/common/debugger.cpp @@ -193,7 +193,7 @@ bool Debugger::RunCommand(const char *inputOrig) { if (!strncmp(_dvars[i].name, param[0], strlen(_dvars[i].name))) { if (num_params > 1) { // Alright, we need to check the TYPE of the variable to deref and stuff... the array stuff is a bit ugly :) - switch(_dvars[i].type) { + switch (_dvars[i].type) { // Integer case DVAR_BYTE: *(byte *)_dvars[i].variable = atoi(param[1]); @@ -226,7 +226,7 @@ bool Debugger::RunCommand(const char *inputOrig) { } } else { // And again, type-dependent prints/defrefs. The array one is still ugly. - switch(_dvars[i].type) { + switch (_dvars[i].type) { // Integer case DVAR_BYTE: DebugPrintf("(byte)%s = %d\n", param[0], *(const byte *)_dvars[i].variable); -- cgit v1.2.3