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:
Darryl L. Miles 2024-10-04 16:04:45 +01:00 committed by Tim Edwards
parent 3477480ab0
commit da2c7b719e
1 changed files with 1 additions and 1 deletions

View File

@ -965,5 +965,5 @@ drcIncCount(def, area, rule, count)
DRCCookie *rule; DRCCookie *rule;
int *count; int *count;
{ {
*count++; (*count)++;
} }