Skip to content

Commit

Permalink
list_leaksdb_sources: fix newline typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aviau committed Sep 14, 2024
1 parent 435a616 commit 7e5285b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func main() {
}
defer resp.Body.Close()
if _, err := io.Copy(os.Stdout, resp.Body); err != nil {
fmt.Printf("failed to get sources: %s\b", err)
fmt.Printf("failed to print sources: %s\n", err)
os.Exit(1)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func main() {
}
defer resp.Body.Close()
if _, err := io.Copy(os.Stdout, resp.Body); err != nil {
fmt.Printf("failed to get sources: %s\b", err)
fmt.Printf("failed to print sources: %s\n", err)
os.Exit(1)
}
}

0 comments on commit 7e5285b

Please sign in to comment.