diff options
author | unknown <lenz@mysql.com> | 2004-10-25 14:55:44 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2004-10-25 14:55:44 +0200 |
commit | 5a941fb9414299dc492fc848e26fc15898115723 (patch) | |
tree | 082e8fc8deb8ed2f244cf1561a38308199ec59a7 /innobase | |
parent | 7df41480849074ad0b1a907d244b5d3b41403f32 (diff) | |
download | mariadb-git-5a941fb9414299dc492fc848e26fc15898115723.tar.gz |
- fixed typo in innobase/os/os0file.c that caused the Windows build to fail
innobase/os/os0file.c:
- fixed typo that caused the Windows build to fail
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/os/os0file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/os/os0file.c b/innobase/os/os0file.c index f2c1a82a995..f70e8c9b587 100644 --- a/innobase/os/os0file.c +++ b/innobase/os/os0file.c @@ -2390,7 +2390,7 @@ os_file_get_status( } else if (_S_IFREG & statinfo.st_mode) { stat_info->type = OS_FILE_TYPE_FILE; } else { - stat_info_>type = OS_FILE_TYPE_UNKNOWN; + stat_info->type = OS_FILE_TYPE_UNKNOWN; } stat_info->ctime = statinfo.st_ctime; |