mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 20:41:39 -07:00
fix for very very old compilers
This commit is contained in:
parent
60c76d0c64
commit
531ee7734b
1 changed files with 2 additions and 2 deletions
4
bfg.c
4
bfg.c
|
@ -192,8 +192,8 @@ uint64_t bf_get_pcount() {
|
||||||
|
|
||||||
int accu(int value)
|
int accu(int value)
|
||||||
{
|
{
|
||||||
int i = 0;
|
int i = 0, a;
|
||||||
for(int a=1; a<=value; ++a)
|
for (a=1; a<=value; ++a)
|
||||||
{
|
{
|
||||||
i+=a;
|
i+=a;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue