- Fix build on ARM.
PR: 198682 Submitted by: garga
This commit is contained in:
parent
16f4e768bd
commit
eca0ca2340
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=381590
1 changed files with 2 additions and 2 deletions
|
@ -321,7 +321,7 @@ $OpenBSD: patch-pftop_c,v 1.12 2009/12/02 21:16:10 sthen Exp $
|
|||
- print_fld_rate(FLD_SA, (s->creation > 0) ?
|
||||
- ((double)sz/(double)s->creation) : -1);
|
||||
+ print_fld_rate(FLD_SA, (s->creation) ?
|
||||
+ ((double)sz/PF_TSTAMP((double)s->creation)) : -1);
|
||||
+ ((double)sz/PF_TSTAMP(s->creation)) : -1);
|
||||
}
|
||||
#else
|
||||
print_fld_size(FLD_PKTS, s->packets);
|
||||
|
@ -329,7 +329,7 @@ $OpenBSD: patch-pftop_c,v 1.12 2009/12/02 21:16:10 sthen Exp $
|
|||
- print_fld_rate(FLD_SA, (s->creation > 0) ?
|
||||
- ((double)s->bytes/(double)s->creation) : -1);
|
||||
+ print_fld_rate(FLD_SA, (s->creation) ?
|
||||
+ ((double)s->bytes/PF_TSTAMP((double)s->creation)) : -1);
|
||||
+ ((double)s->bytes/PF_TSTAMP(s->creation)) : -1);
|
||||
|
||||
#endif
|
||||
#ifdef HAVE_PFSYNC_STATE
|
||||
|
|
Loading…
Reference in a new issue