Fixed: "hf mfdes info"

This commit is contained in:
iceman1001
2014-09-18 12:38:31 +02:00
parent b44e523300
commit 313ee67ea2
10 changed files with 268 additions and 200 deletions

View File

@@ -11,8 +11,8 @@
* @return
*/
int fileExists(const char *filename) {
struct _stat st;
int result = stat(filename, &st);
struct _stat fileStat;
int result = _stat(filename, &fileStat);
return result == 0;
}