Replace tabs with spaces

This commit is contained in:
nemerle 2016-04-22 11:45:23 +02:00
parent b509d0fcf0
commit 5c85c92d1a
7 changed files with 28 additions and 27 deletions

View File

@ -638,7 +638,8 @@ void interactDis(Function * initProc, int initIC)
const char *procname = "UNKNOWN"; const char *procname = "UNKNOWN";
if(initProc) if(initProc)
procname = initProc->name.c_str(); procname = initProc->name.c_str();
printf("Wanted to start interactive disasassembler for %s at %x\n",procname,initIC);
printf("Wanted to start interactive disasassembler for %s:%d\n",procname,initIC);
return; return;
} }