aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/conf/storewatcher_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'conf/storewatcher_windows.go')
-rw-r--r--conf/storewatcher_windows.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/storewatcher_windows.go b/conf/storewatcher_windows.go
index f3f38fef..ddfc8b92 100644
--- a/conf/storewatcher_windows.go
+++ b/conf/storewatcher_windows.go
@@ -46,8 +46,8 @@ func startWatchingConfigDir() {
log.Fatalf("Unable to wait on config directory watcher: %v", err)
}
- for _, cb := range storeCallbacks {
- cb()
+ for cb := range storeCallbacks {
+ cb.cb()
}
err = findNextChangeNotification(h)