Skip to content

Commit

Permalink
Minor style fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlehn authored and dlongley committed Oct 29, 2016
1 parent 2673643 commit 1e494ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/md5.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ md5.create = function() {
md.fullMessageLength[i] += len[1];
len[1] = len[0] + ((md.fullMessageLength[i] / 0x100000000) >>> 0);
md.fullMessageLength[i] = md.fullMessageLength[i] >>> 0;
len[0] = ((len[1] / 0x100000000) >>> 0);
len[0] = (len[1] / 0x100000000) >>> 0;
}

// add bytes to input buffer
Expand Down

0 comments on commit 1e494ef

Please sign in to comment.