diff options
| -rw-r--r-- | argv.Print.go | 2 | ||||
| -rw-r--r-- | exit.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/argv.Print.go b/argv.Print.go index 9886834..2d7ea80 100644 --- a/argv.Print.go +++ b/argv.Print.go @@ -89,7 +89,7 @@ func PrintStderr() { func PrintStdout() { line := strings.TrimSpace(PB.Stdout) if line == "" { - // return + return } fmt.Fprintf(os.Stdout, " %s\n", line) } @@ -53,7 +53,7 @@ func (pb *Argv) badExit(msg string, err error) { } } else { // If it's not a joined error, you can fall back to the single-unwrap loop. - fmt.Printf("Error: (%v)\n", u) + fmt.Printf("Error: (%v)\n", err) } } |
