Commit 5a941fb9 authored by unknown's avatar unknown
Browse files

- 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
parent 7df41480
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;