diff options
author | Andrew Gatt <andrew.gatt@springltd.co> | 2017-01-30 11:28:37 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-30 23:10:16 +1100 |
commit | 10dbf2383f14ad4cc9ddfd9e5b75492a219a7a6c (patch) | |
tree | a1f6150dace60022a6c562b483e11e36cfd05219 | |
parent | c30b308492ddd587e5a1f76c538956cad44735a2 (diff) | |
download | micropython-10dbf2383f14ad4cc9ddfd9e5b75492a219a7a6c.tar.gz micropython-10dbf2383f14ad4cc9ddfd9e5b75492a219a7a6c.zip |
extmod/vfs_fat.c: Use explicit include path for timeutils.h.
-rw-r--r-- | extmod/vfs_fat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/vfs_fat.c b/extmod/vfs_fat.c index b32bf7ad9d..82dd312b8f 100644 --- a/extmod/vfs_fat.c +++ b/extmod/vfs_fat.c @@ -38,7 +38,7 @@ #include "py/mperrno.h" #include "lib/oofatfs/ff.h" #include "extmod/vfs_fat.h" -#include "timeutils.h" +#include "lib/timeutils/timeutils.h" #if _MAX_SS == _MIN_SS #define SECSIZE(fs) (_MIN_SS) |