diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2017-01-16 07:23:09 -0500 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2017-01-16 07:30:39 -0500 |
| commit | 4f7fea2addf4a5bc7c301e78f53d9080eaf43fb6 (patch) | |
| tree | 6b72c005607b8d4cda9b7c599716eec391fe43a9 /firmware/include/file.h | |
| parent | 16d1788356e82c639302a884437341e039574822 (diff) | |
| download | rockbox-4f7fea2addf4a5bc7c301e78f53d9080eaf43fb6.zip rockbox-4f7fea2addf4a5bc7c301e78f53d9080eaf43fb6.tar.gz rockbox-4f7fea2addf4a5bc7c301e78f53d9080eaf43fb6.tar.bz2 rockbox-4f7fea2addf4a5bc7c301e78f53d9080eaf43fb6.tar.xz | |
Fix path handling snafu for CheckWPS tool
Somehow it got hooked to simulator file functions when it should
be (and was) using raw OS functions.
Credit: Frank Gevaerts
Change-Id: Iac02fed1067830a432183632a047e00dfd03d3c2
Diffstat (limited to 'firmware/include/file.h')
| -rw-r--r-- | firmware/include/file.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/include/file.h b/firmware/include/file.h index 8e5bace..040f48d 100644 --- a/firmware/include/file.h +++ b/firmware/include/file.h @@ -42,9 +42,9 @@ enum relate_result RELATE_PREFIX, /* the path2 contains path1 as a prefix */ }; -#if defined(APPLICATION) +#if defined(APPLICATION) || defined(CHECKWPS) #include "filesystem-app.h" -#elif defined(SIMULATOR) || defined(__PCTOOL__) +#elif defined(SIMULATOR) || defined(DBTOOL) #include "../../uisimulator/common/filesystem-sim.h" #else #include "filesystem-native.h" |