Skip to content

Commit

Permalink
cmd/cdi: fix warning printout.
Browse files Browse the repository at this point in the history
Signed-off-by: Krisztian Litkey <krisztian.litkey@intel.com>
  • Loading branch information
klihub committed Mar 1, 2024
1 parent 6f9766c commit 858150c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/cdi/cmd/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func monitorDirectories(dirs ...string) (*fsnotify.Watcher, error) {

for _, dir := range dirs {
if _, err = os.Stat(dir); err != nil {
fmt.Printf("WARNING: failed to stat dir %q, NOT watching it...", dir)
fmt.Printf("WARNING: failed to stat dir %q, NOT watching it...\n", dir)
continue
}

Expand Down

0 comments on commit 858150c

Please sign in to comment.