Skip to content

Commit

Permalink
undid typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jamescarr committed Jun 4, 2012
1 parent 573626e commit 8337a80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amqp.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ function parseLongString (buffer) {
function parseSignedInteger (buffer) {
var int = parseInt(buffer, 4);
if (int & 0x80000000) {
int = -int;
int |= 0xEFFFFFFF;
int = -int;
}
return int;
}
Expand Down

0 comments on commit 8337a80

Please sign in to comment.