use + instead of <<

bug/bundler_fix
Christian Mehlmauer 2015-02-24 17:18:41 +01:00
parent 5880702552
commit 906c4a9024
No known key found for this signature in database
GPG Key ID: BCFF4FA966BC32C7
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ module Buffer
when 'num'
buf = Rex::Text.to_num(buf)
when 'hex'
buf = Rex::Text.to_hex(buf, '') << "\n"
buf = Rex::Text.to_hex(buf, '') + "\n"
when 'dword', 'dw'
buf = Rex::Text.to_dword(buf)
when 'python', 'py'