Skip to content

Commit

Permalink
Bug 895727 - Fix obvious typo breaking Win64 builds. r=lumpy
Browse files Browse the repository at this point in the history
  • Loading branch information
jswalden committed Jul 19, 2013
1 parent c6b4634 commit 6580358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mfbt/MathAlgorithms.h
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ namespace detail {
{
# if defined(MOZ_BITSCAN_WINDOWS64)
unsigned long index;
_BitScanForward64(&idx, static_cast<unsigned __int64>(u));
_BitScanForward64(&index, static_cast<unsigned __int64>(u));
return uint_fast8_t(index);
# else
uint32_t lo = uint32_t(u);
Expand Down

0 comments on commit 6580358

Please sign in to comment.