JANITORIAL: Fix whitespace in pointer template arg

This commit is contained in:
Tarek Soliman 2012-02-15 00:06:13 -06:00
parent dbcd177606
commit 921f602ab8
61 changed files with 119 additions and 119 deletions

View file

@ -69,14 +69,14 @@ bool Debugger::Cmd_Location(int argc, const char **argv) {
switch (argc) {
case 3:
character = const_cast<char*>(argv[2]);
location = const_cast<char*>(argv[1]);
character = const_cast<char *>(argv[2]);
location = const_cast<char *>(argv[1]);
sprintf(tmp, "%s.%s", location, character);
_vm->scheduleLocationSwitch(tmp);
break;
case 2:
location = const_cast<char*>(argv[1]);
location = const_cast<char *>(argv[1]);
_vm->scheduleLocationSwitch(location);
break;