Skip to content

Commit

Permalink
Anonymize unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
johanbrandhorst committed Jul 9, 2024
1 parent 870b1c1 commit 21bc401
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scan_rr.go
Original file line number Diff line number Diff line change
Expand Up @@ -1212,7 +1212,7 @@ func (rr *SSHFP) parse(c *zlexer, o string) *ParseError {
return nil
}

func (rr *DNSKEY) parseDNSKEY(c *zlexer, o, typ string) *ParseError {
func (rr *DNSKEY) parseDNSKEY(c *zlexer, _, typ string) *ParseError {
l, _ := c.Next()
i, e := strconv.ParseUint(l.token, 10, 16)
if e != nil || l.err {
Expand Down Expand Up @@ -1430,7 +1430,7 @@ func (rr *GPOS) parse(c *zlexer, o string) *ParseError {
return slurpRemainder(c)
}

func (rr *DS) parseDS(c *zlexer, o, typ string) *ParseError {
func (rr *DS) parseDS(c *zlexer, _, typ string) *ParseError {
l, _ := c.Next()
i, e := strconv.ParseUint(l.token, 10, 16)
if e != nil || l.err {
Expand Down

0 comments on commit 21bc401

Please sign in to comment.