Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Mar 2020 02:30:23 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r359416 - head/usr.bin/systat
Message-ID:  <202003290230.02T2UNGt036148@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Sun Mar 29 02:30:23 2020
New Revision: 359416
URL: https://svnweb.freebsd.org/changeset/base/359416

Log:
  systat: remove redundant definition of kd
  
  kd is already properly declared in extern.h and defined in main.c, rendering
  this definition useless. This fixes the -fno-common build.
  
  MFC after:	3 days

Modified:
  head/usr.bin/systat/swap.c

Modified: head/usr.bin/systat/swap.c
==============================================================================
--- head/usr.bin/systat/swap.c	Sun Mar 29 02:29:06 2020	(r359415)
+++ head/usr.bin/systat/swap.c	Sun Mar 29 02:30:23 2020	(r359416)
@@ -58,8 +58,6 @@ static const char sccsid[] = "@(#)swap.c	8.3 (Berkeley
 #include "extern.h"
 #include "devs.h"
 
-kvm_t	*kd;
-
 static char *header;
 static long blocksize;
 static int dlen, odlen;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003290230.02T2UNGt036148>