aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/rlpdump/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/rlpdump/main.go')
-rw-r--r--cmd/rlpdump/main.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/rlpdump/main.go b/cmd/rlpdump/main.go
index 8f1c4a8c2..8567dcff8 100644
--- a/cmd/rlpdump/main.go
+++ b/cmd/rlpdump/main.go
@@ -110,8 +110,7 @@ func dump(s *rlp.Stream, depth int) error {
s.List()
defer s.ListEnd()
if size == 0 {
- fmt.Printf(ws(depth) + "[]")
- return nil
+ fmt.Print(ws(depth) + "[]")
} else {
fmt.Println(ws(depth) + "[")
for i := 0; ; i++ {