summaryrefslogtreecommitdiff
path: root/zen/dir_watcher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/dir_watcher.cpp')
-rw-r--r--zen/dir_watcher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/dir_watcher.cpp b/zen/dir_watcher.cpp
index bb78939f..00b48b4f 100644
--- a/zen/dir_watcher.cpp
+++ b/zen/dir_watcher.cpp
@@ -223,7 +223,7 @@ public:
//async I/O is a resource that needs to be guarded since it will write to local variable "buffer"!
auto guardAio = zen::makeGuard<ScopeGuardRunMode::ON_EXIT>([&]
{
- //Canceling Pending I/O Operations: http://msdn.microsoft.com/en-us/library/aa363789(v=vs.85).aspx
+ //Canceling Pending I/O Operations: https://msdn.microsoft.com/en-us/library/aa363789
#ifdef ZEN_WIN_VISTA_AND_LATER
if (::CancelIoEx(hDir, &overlapped) /*!= FALSE*/ || ::GetLastError() != ERROR_NOT_FOUND)
#else
bgstack15