diff options
author | Ron Yorston <rmy@pobox.com> | 2014-03-13 22:02:12 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2014-03-13 22:02:12 +0000 |
commit | e8c9f63c8e618d85104369a4c588129b165851e2 (patch) | |
tree | 472f9a45e0cd789fee8d5b875a97d9877c169ff8 /include | |
parent | e15ec3837bfed8a05ff0e8c7edd658fbb41f5d7d (diff) | |
download | busybox-w32-e8c9f63c8e618d85104369a4c588129b165851e2.tar.gz busybox-w32-e8c9f63c8e618d85104369a4c588129b165851e2.tar.bz2 busybox-w32-e8c9f63c8e618d85104369a4c588129b165851e2.zip |
Fix some compiler warnings
Diffstat (limited to 'include')
-rw-r--r-- | include/mingw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h index 219712780..198ea911e 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -305,7 +305,7 @@ int waitpid(pid_t pid, int *status, unsigned options); | |||
305 | struct tm *gmtime_r(const time_t *timep, struct tm *result); | 305 | struct tm *gmtime_r(const time_t *timep, struct tm *result); |
306 | struct tm *localtime_r(const time_t *timep, struct tm *result); | 306 | struct tm *localtime_r(const time_t *timep, struct tm *result); |
307 | char *strptime(const char *s, const char *format, struct tm *tm); | 307 | char *strptime(const char *s, const char *format, struct tm *tm); |
308 | size_t mingw_strftime(const char *buf, size_t max, const char *format, const struct tm *tm); | 308 | size_t mingw_strftime(char *buf, size_t max, const char *format, const struct tm *tm); |
309 | int stime(time_t *t); | 309 | int stime(time_t *t); |
310 | 310 | ||
311 | #define strftime mingw_strftime | 311 | #define strftime mingw_strftime |