Mark a function static.
This commit is contained in:
parent
f8743f1412
commit
cc94f7abf8
|
@ -117,7 +117,7 @@ int read64le(u64 *Bufo, EMUFILE *is)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int read32le(u32 *Bufo, std::istream *is)
|
static int read32le(u32 *Bufo, std::istream *is)
|
||||||
{
|
{
|
||||||
u32 buf;
|
u32 buf;
|
||||||
if(is->read((char*)&buf,4).gcount() != 4)
|
if(is->read((char*)&buf,4).gcount() != 4)
|
||||||
|
|
Loading…
Reference in New Issue