When I compile ./source/modules/vfs_default.c (3.2.4) on VOS Operating System from Stratus Technologies I get: Compiling modules/vfs_default.c ./source/modules/vfs_default.c: In function `vfswrap_ntimes': ./source/modules/vfs_default.c:673: error: incompatible type for argument 2 of `utime' VOS doesn't support utimes() so we use utime() instead and hit this problem where we get compile error if we don't change: "result = utime(path, times);" to "result = utime(path, ×);" The 2nd arg passed into utime needs to be an address reference in accordance with the utime() declaration. I think this will happen on other OS'es that don't support utimes() as well.
Fixed in all git branches. Thanks. Jeremy.