diff options
author | Georgi Kodinov <joro@sun.com> | 2009-09-02 13:22:47 +0300 |
---|---|---|
committer | Georgi Kodinov <joro@sun.com> | 2009-09-02 13:22:47 +0300 |
commit | f0720480dc641195999086b5c36d3d6a03b1a935 (patch) | |
tree | ad2bd258297864f123c9991b895df5d1f0d69295 /mysys/my_redel.c | |
parent | 27065edafbe0bfaa2a0fab4b230d910a21014c90 (diff) | |
download | mariadb-git-f0720480dc641195999086b5c36d3d6a03b1a935.tar.gz |
Fixed win32 compilation warnings
Diffstat (limited to 'mysys/my_redel.c')
-rw-r--r-- | mysys/my_redel.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysys/my_redel.c b/mysys/my_redel.c index c03d1bc7c25..6521253f949 100644 --- a/mysys/my_redel.c +++ b/mysys/my_redel.c @@ -76,7 +76,9 @@ end: int my_copystat(const char *from, const char *to, int MyFlags) { struct stat statbuf; +#if !defined(__WIN__) && !defined(__NETWARE__) int res; +#endif if (stat((char*) from, &statbuf)) { |