Diff Detail
Diff Detail
- Lint
Lint Skipped - Unit
Tests Skipped
Event Timeline
sbin/route/route.c | ||
---|---|---|
896 | Note I changed these from 0 to NULL in an earlier local commit, which I'll push as well - getaddr(RTAX_IFA, *++argv, 0, nrflags); + getaddr(RTAX_IFA, *++argv, NULL, nrflags); | |
1184 | IMO the (void) cast is better than annotating the arg with __unused for #ifdef conditional cases, so that the warning will come back if the argument later becomes unused in the other cases. |
sbin/route/route.c | ||
---|---|---|
1157 | As far as I understand, hpp usage is write-only (we zero *hpp in the beginning of INET block and write gethostname data in the end). |