Skip to content

Commit

Permalink
fix a problem on 32bit
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmuhs committed Jan 21, 2016
1 parent 38df9d4 commit 004ef8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keyvi/src/cpp/dictionary/fsa/internal/bit_vector_64.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ final {
size_t size_ = Tsize;

inline int Position(uint64_t number) const {
return __builtin_ffsl(number) - 1;
return __builtin_ffsll(number) - 1;
}


Expand Down

0 comments on commit 004ef8d

Please sign in to comment.