[covargs] Include newline when warning about missing module

This was omitted from previous change that replaced error (which aren't
terminated with newlines) with a warning.

Change-Id: If30be0c1b18af7ce9cb877ae92257e1c0b8eb573
diff --git a/cmd/covargs/main.go b/cmd/covargs/main.go
index 4f4619c..fc3aa76 100644
--- a/cmd/covargs/main.go
+++ b/cmd/covargs/main.go
@@ -176,7 +176,7 @@
 			if ref, ok := info.ids[mod.Build]; ok {
 				moduleFiles = append(moduleFiles, ref.Filepath)
 			} else {
-				fmt.Fprintf(os.Stderr, "WARN: module with build id %s not found in ids.txt file", mod.Build)
+				fmt.Fprintf(os.Stderr, "WARN: module with build id %s not found in ids.txt file\n", mod.Build)
 				continue
 			}
 		}