diff options
Diffstat (limited to 'common.h')
| -rw-r--r-- | common.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -389,7 +389,7 @@ bszero(struct bitset bs[/*siz*/], uint siz) static inline void bscopy(struct bitset dst[/*siz*/], const struct bitset src[/*siz*/], uint siz) { - while (--siz) dst++->u = src++->u; + while (siz--) dst++->u = src++->u; } static inline bool |