Skip to content

Commit e60a384

Browse files
authored
don't use bool as variable name
1 parent f35d782 commit e60a384

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

oldlibs/ps2ftpd/src/FtpClient.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ char *itoa(char *in, int val)
6262
char *uitoa(char *in, u64 val)
6363
{
6464
char *p = in;
65-
int bool = 0;
65+
int b = 0;
6666
int i = 19;
6767
char c;
6868
int j;
@@ -76,10 +76,10 @@ char *uitoa(char *in, u64 val)
7676

7777
for (c = '0'; val >= tmp; c++) {
7878
val -= tmp;
79-
bool = 1;
79+
b = 1;
8080
}
8181

82-
if (bool == 1)
82+
if (b == 1)
8383
*p++ = c;
8484
} while (i);
8585

0 commit comments

Comments
 (0)