Commit 981f4b43 authored by Robert Griesemer's avatar Robert Griesemer

mention file name only once in error message

R=r
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=31450
CL=31452
parent a47404bc
......@@ -80,7 +80,7 @@ func main() {
src, err := io.ReadFile(filename);
if err != nil {
fmt.Fprintf(os.Stderr, "%s: %v\n", filename, err);
fmt.Fprintf(os.Stderr, "%v\n", err);
os.Exit(1);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment