mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:11:45 +03:00
tool_help.h: drop redundant U suffix from literals
Also: - update the generator script accordingly. - convert lowercase `u` suffix to uppercase to match rest of code. Closes #20476
This commit is contained in:
parent
c2d7bfa992
commit
4d0c3b690e
2 changed files with 28 additions and 28 deletions
|
|
@ -1168,7 +1168,7 @@ sub listcats {
|
|||
@categories = sort @categories;
|
||||
for my $i (0..$#categories) {
|
||||
printf("#define CURLHELP_%-10s (%s)\n",
|
||||
uc($categories[$i]), "1u << ${i}u");
|
||||
uc($categories[$i]), "1 << ${i}");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue