Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix warning
  • Loading branch information
Tilka committed Jan 25, 2014
1 parent 23b8465 commit e94a6f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/PPCTables.cpp
Expand Up @@ -199,7 +199,7 @@ void PrintInstructionRunCounts()
if (inst.second == 0)
break;

DEBUG_LOG(POWERPC, "%s : %llu", inst.first, inst.second);
DEBUG_LOG(POWERPC, "%s : %" PRIu64, inst.first, inst.second);
//PanicAlert("%s : %llu", inst.first, inst.second);
}
}
Expand Down

0 comments on commit e94a6f0

Please sign in to comment.