summaryrefslogtreecommitdiff
path: root/mysys/my_redel.c
diff options
context:
space:
mode:
authorGeorgi Kodinov <joro@sun.com>2009-09-02 13:22:47 +0300
committerGeorgi Kodinov <joro@sun.com>2009-09-02 13:22:47 +0300
commitf0720480dc641195999086b5c36d3d6a03b1a935 (patch)
treead2bd258297864f123c9991b895df5d1f0d69295 /mysys/my_redel.c
parent27065edafbe0bfaa2a0fab4b230d910a21014c90 (diff)
downloadmariadb-git-f0720480dc641195999086b5c36d3d6a03b1a935.tar.gz
Fixed win32 compilation warnings
Diffstat (limited to 'mysys/my_redel.c')
-rw-r--r--mysys/my_redel.c2
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))
{