1
0
mirror of https://github.com/openbsd/src.git synced 2026-06-18 15:23:33 +02:00

Fix pointless cast: (struct timezone *)0 -> NULL

This commit is contained in:
cheloha
2019-08-09 21:31:07 +00:00
parent 8d9f4b32f4
commit 5bec4ecbd8
+2 -2
View File
@@ -1,4 +1,4 @@
/* $OpenBSD: rstat_proc.c,v 1.36 2019/06/28 13:32:53 deraadt Exp $ */
/* $OpenBSD: rstat_proc.c,v 1.37 2019/08/09 21:31:07 cheloha Exp $ */
/*
* Copyright (c) 2010, Oracle America, Inc.
@@ -235,7 +235,7 @@ updatestat(void)
stats_all.s1.v_pswpout = 0;
stats_all.s1.v_intr = uvmexp.intrs;
stats_all.s2.v_swtch = uvmexp.swtch;
gettimeofday(&tm, (struct timezone *) 0);
gettimeofday(&tm, NULL);
stats_all.s1.v_intr -= hz*(tm.tv_sec - btm.tv_sec) +
hz*(tm.tv_usec - btm.tv_usec)/1000000;
stats_all.s1.if_ipackets = 0;