DRCsubcell.c: fix: warning: value computed is not used
Looks like a logic bug hidden in the warning. GCC14 -Wall cleanup series [-Wunused-value]
This commit is contained in:
parent
3477480ab0
commit
da2c7b719e
|
|
@ -965,5 +965,5 @@ drcIncCount(def, area, rule, count)
|
|||
DRCCookie *rule;
|
||||
int *count;
|
||||
{
|
||||
*count++;
|
||||
(*count)++;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue