Skip to content

Commit

Permalink
all: gofmt -s -w
Browse files Browse the repository at this point in the history
  • Loading branch information
mewmew committed Jul 31, 2017
1 parent 08141e8 commit 1e4441e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/bin2ll/callgraph.go
Expand Up @@ -105,7 +105,7 @@ type Node struct {
// DOTAttributes returns the DOT attributes of the node.
func (n Node) DOTAttributes() []dot.Attribute {
return []dot.Attribute{
dot.Attribute{Key: "label", Value: fmt.Sprintf("%q", n.Name)},
{Key: "label", Value: fmt.Sprintf("%q", n.Name)},
}
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/h2ll/ll.go
Expand Up @@ -32,7 +32,7 @@ func llFuncSigs(module *ir.Module, sigs map[bin.Address]FuncSig, funcAddrs []bin
f.Parent = nil
f.Blocks = nil
f.Metadata = map[string]*metadata.Metadata{
"addr": &metadata.Metadata{
"addr": {
Nodes: []metadata.Node{&metadata.String{Val: funcAddr.String()}},
},
}
Expand Down

0 comments on commit 1e4441e

Please sign in to comment.