Skip to content
This repository has been archived by the owner on Feb 17, 2020. It is now read-only.

Commit

Permalink
re #15 try to fix arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
sidkshatriya committed Jun 3, 2018
1 parent abb03f1 commit b0f925b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/base.go
Expand Up @@ -89,7 +89,7 @@ func sendGdbCommand(gdbSession *gdb.Gdb, command string, arguments ...string) ma
if VerboseFlag {
color.Green("dontbug -> gdb: %v %v", command, strings.Join(arguments, " "))
}
result, err := gdbSession.Send(command, arguments...)
result, err := gdbSession.Send(command, strings.Split(strings.Join(arguments, " "), " ")...);

// Note we're not panicing here. We really can't do anything here
fatalIf(err)
Expand Down

0 comments on commit b0f925b

Please sign in to comment.