mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-26 06:18:32 +00:00
Systematically eliminating compiler warnings.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5117 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
3cc5d8ce6f
commit
1d40b8a5ae
26 changed files with 74 additions and 67 deletions
|
@ -308,7 +308,7 @@ int main(int argc, const char *argv[])
|
|||
}
|
||||
results.append("\n");
|
||||
results.append("Step [number]:\n[Reg] [last value] [current value]\n\n");
|
||||
for (int step = 1; step < reg_vector.size()/32; step++)
|
||||
for (unsigned int step = 1; step < reg_vector.size()/32; step++)
|
||||
{
|
||||
bool changed = false;
|
||||
results.append(StringFromFormat("Step %3d:\n", step));
|
||||
|
@ -332,7 +332,7 @@ int main(int argc, const char *argv[])
|
|||
if (!output_name.empty())
|
||||
File::WriteStringToFile(true, results, output_name.c_str());
|
||||
else
|
||||
printf(results.c_str());
|
||||
printf("%s", results.c_str());
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue