mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-09 02:26:19 +00:00
Merge pull request #5029 from pal1000/work
Fix warning in MIPS/MIPSAnalyst.cpp
This commit is contained in:
commit
82c28aa93f
@ -17,7 +17,6 @@
|
||||
|
||||
#include <map>
|
||||
#include <set>
|
||||
|
||||
#include "ext/cityhash/city.h"
|
||||
#include "Common/FileUtil.h"
|
||||
#include "Core/Config.h"
|
||||
@ -580,7 +579,7 @@ skip:
|
||||
|
||||
// Yay, found a function.
|
||||
|
||||
for (int i = 0; i < iter->second.size(); i++) {
|
||||
for (unsigned int i = 0; i < iter->second.size(); i++) {
|
||||
AnalyzedFunction &f = *(iter->second[i]);
|
||||
if (f.hash == mf->hash && f.size == mf->size) {
|
||||
strncpy(f.name, mf->name, sizeof(mf->name) - 1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user