出力の微修正

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@558 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
n1481 2011-05-13 05:24:55 +00:00
parent 18fa074d21
commit e86bea8e49

View File

@ -391,6 +391,7 @@ void Checker::CheckAllEntries( Entry* gEntry, Entry* mEntry)
{
MyDirEntry *currentEntry = gEntry->dirEntry;
MyDirEntry *hisEntry;
bool isExistAll = true;
printf( "------- directory check -------\n");
while( currentEntry)
@ -405,13 +406,20 @@ void Checker::CheckAllEntries( Entry* gEntry, Entry* mEntry)
else
{
printf( " --->(存在していない)\n");
isExistAll = false;
}
currentEntry = (MyDirEntry*)(currentEntry->next);
}
if( isExistAll)
{
printf( "\n");
printf( "(以上の ディレクトリは 全て マジコン側にも存在している)\n");
}
}
printf( "\n\n");
MyFileEntry *currentEntry = gEntry->fileEntry;
MyFileEntry *hisEntry;
printf( "------- file check -------\n");