aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/updater/msirunner.go
diff options
context:
space:
mode:
Diffstat (limited to 'updater/msirunner.go')
-rw-r--r--updater/msirunner.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/updater/msirunner.go b/updater/msirunner.go
index 13495f46..ec6b1bd3 100644
--- a/updater/msirunner.go
+++ b/updater/msirunner.go
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: MIT
*
- * Copyright (C) 2019-2021 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2019-2022 WireGuard LLC. All Rights Reserved.
*/
package updater
@@ -38,7 +38,7 @@ func (t *tempFile) Delete() error {
if err != nil {
return err
}
- return windows.DeleteFile(name16) //TODO: how does this deal with reparse points?
+ return windows.DeleteFile(name16) // TODO: how does this deal with reparse points?
}
disposition := byte(1)
err := windows.SetFileInformationByHandle(t.originalHandle, windows.FileDispositionInfo, &disposition, 1)