aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/account/split.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/account/split.go b/commands/account/split.go
index 4b01da2d..5f09f21b 100644
--- a/commands/account/split.go
+++ b/commands/account/split.go
@@ -70,9 +70,9 @@ func (s Split) Execute(args []string) error {
}
switch args[0] {
case "split", "hsplit":
- return acct.Split(s.Size)
+ acct.Split(s.Size)
case "vsplit":
- return acct.Vsplit(s.Size)
+ acct.Vsplit(s.Size)
}
return nil
}