diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-06-13 11:21:30 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-13 11:21:30 -0700 |
commit | 04d30ce622517faa0c6bc34ac5626586b447e350 (patch) | |
tree | e4da893cea652d1555a108fa8732473be0e2d595 /compat | |
parent | 448598b5089455b30737c08915b62597a2132bf7 (diff) | |
parent | ec47a33fd2c3b679c3d8cbd440752414adb56ce9 (diff) | |
download | git-04d30ce622517faa0c6bc34ac5626586b447e350.tar.gz |
Merge branch 'js/maint-windows'
* js/maint-windows:
Recent MinGW has a C99 implementation of snprintf functions
mingw: use _commit to implement fsync
Diffstat (limited to 'compat')
-rw-r--r-- | compat/mingw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/mingw.h b/compat/mingw.h index 0e3e743041..f465566b7a 100644 --- a/compat/mingw.h +++ b/compat/mingw.h @@ -80,7 +80,7 @@ static inline int fork(void) static inline unsigned int alarm(unsigned int seconds) { return 0; } static inline int fsync(int fd) -{ return 0; } +{ return _commit(fd); } static inline int getppid(void) { return 1; } static inline void sync(void) |