• R/O
  • SSH

libctools: Commit

This library contains code that extends and simplifies different operations
for C language based programs.


Commit MetaInfo

Revision5742b731f57e948d78764b41a5e472e92a7ddcb6 (tree)
Zeit2022-10-04 09:42:23
AutorSergey Gusarov <laborer2008@gmai...>
CommiterSergey Gusarov

Log Message

Fixed bcc warning

Ändern Zusammenfassung

Diff

diff -r 60ac4fae6a88 -r 5742b731f57e src/bits.c
--- a/src/bits.c Tue Oct 04 00:28:51 2022 +0300
+++ b/src/bits.c Tue Oct 04 03:42:23 2022 +0300
@@ -51,7 +51,7 @@
5151 #if defined (CT_COMPL_GCC_EMULATION)
5252 count = __builtin_popcount(x);
5353 #else
54- int i;
54+ uint i;
5555
5656 count = 0;
5757 for (i = 0; i < sizeof(x) * CHAR_BIT; i++)
Show on old repository browser