diff options
| author | 2025-10-15 22:08:02 +0200 | |
|---|---|---|
| committer | 2025-10-15 22:08:02 +0200 | |
| commit | c19b3e277399a513c5e3a02d126ba666847566df (patch) | |
| tree | 92ecdacdd5aced0db928bea43125d123871a7b3b | |
| parent | 15d29261df4c92208754fe13bf289fb881084cb9 (diff) | |
lowsetsetbit
| -rw-r--r-- | common.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -96,7 +96,8 @@ lowestsetbit(uvlong x) int i = 0; for (uvlong mask = 1;; ++i, mask <<= 1) if (x & mask) - return i; + break; + return i; #endif } |