* src/w32notify.c (Fw32notify_add_watch): Fix version check.
This commit is contained in:
parent
9d6ec23f7d
commit
478d9d9db3
1 changed files with 1 additions and 1 deletions
|
@ -525,7 +525,7 @@ generate notifications correctly, though. */)
|
|||
|
||||
/* The underlying features are available only since XP. */
|
||||
if (os_subtype == OS_9X
|
||||
|| (w32_major_version == 5 && w32_major_version < 1))
|
||||
|| (w32_major_version == 5 && w32_minor_version < 1))
|
||||
{
|
||||
errno = ENOSYS;
|
||||
report_file_notify_error ("Watching filesystem events is not supported",
|
||||
|
|
Loading…
Add table
Reference in a new issue