Mark a function static.

This commit is contained in:
riccardom 2009-09-16 19:21:57 +00:00
parent f8743f1412
commit cc94f7abf8
1 changed files with 1 additions and 1 deletions

View File

@ -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)