modifiers: Fix PVS 743
Fix 'gotone' is assigned values twice successively. Change-Id: Ibe9f531ba4d16cec61b49cc49e842486b5ab6f64 Reviewed-on: https://review.haiku-os.org/700 Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk>
This commit is contained in:
parent
f5a452910a
commit
81728c84c5
@ -54,11 +54,10 @@ list_modifiers(int mods)
|
||||
{
|
||||
int i;
|
||||
int gotone = 0;
|
||||
for (i=0; modifier_names[i]; i++) {
|
||||
for (i = 0; modifier_names[i]; i++) {
|
||||
if (mods & modifier_bits[i]) {
|
||||
if (gotone)
|
||||
printf(",");
|
||||
gotone = 0;
|
||||
printf("%s", modifier_names[i]);
|
||||
gotone = 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user