Stefan Zager <szager <at> chromium.org> writes:

> 
> This adds a Windows implementation of pread.
> diff --git a/compat/mingw.h b/compat/mingw.h
> index 08b83fe..377ba50 100644
> --- a/compat/mingw.h
> +++ b/compat/mingw.h
> +ssize_t mingw_pread(int fd, void *buf, size_t count, off64_t offset);
> +#define pread mingw_pread

This result in tons of following warnings in MSVC=1 build:

git-compat-util.h(401) : warning C4005: 'pread' : macro redefinition
mingw.h(181) : see previous definition of 'pread'


--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to