diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-11 21:39:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-11 21:39:42 +0300 |
commit | a721e4898f71a68ecb916940864599d462880e5b (patch) | |
tree | 50442e8b86707221f498ea0f304a5314a0e67430 /src/fs/physfs/virtfsphys.h | |
parent | 81b97b30afa0c72e5ff17162c7d1fa88dd6187fb (diff) | |
download | plus-a721e4898f71a68ecb916940864599d462880e5b.tar.gz plus-a721e4898f71a68ecb916940864599d462880e5b.tar.bz2 plus-a721e4898f71a68ecb916940864599d462880e5b.tar.xz plus-a721e4898f71a68ecb916940864599d462880e5b.zip |
Fix different issues found by automatic checks.
Diffstat (limited to 'src/fs/physfs/virtfsphys.h')
-rw-r--r-- | src/fs/physfs/virtfsphys.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/fs/physfs/virtfsphys.h b/src/fs/physfs/virtfsphys.h index 97b70aae6..1daebfb4f 100644 --- a/src/fs/physfs/virtfsphys.h +++ b/src/fs/physfs/virtfsphys.h @@ -18,10 +18,11 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifdef USE_PHYSFS #ifndef UTILS_VIRTFSPHYS_H #define UTILS_VIRTFSPHYS_H +#ifdef USE_PHYSFS + #include "enums/simpletypes/append.h" #include "localconsts.h" @@ -78,5 +79,5 @@ namespace VirtFsPhys int eof(VirtFile *restrict const file); } // namespace VirtFsPhys -#endif // UTILS_VIRTFSPHYS_H #endif // USE_PHYSFS +#endif // UTILS_VIRTFSPHYS_H |