Skip to content

Commit

Permalink
Fix issue when using --enable-frozen-string-literal Ruby option
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Apr 22, 2020
1 parent 5149825 commit 5ec60df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rotp/base32.rb
Expand Up @@ -28,7 +28,7 @@ def decode(str)

def encode(b)
data = b.unpack('c*')
out = ''
out = String.new
buffer = data[0]
idx = 1
bits_left = 8
Expand Down

0 comments on commit 5ec60df

Please sign in to comment.