Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Feb 2018 18:40:36 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r328857 - head/libexec/getty
Message-ID:  <201802041840.w14Ieavh077476@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: trasz
Date: Sun Feb  4 18:40:36 2018
New Revision: 328857
URL: https://svnweb.freebsd.org/changeset/base/328857

Log:
  Add missing initializer.
  
  MFC after:	2 weeks
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/libexec/getty/subr.c

Modified: head/libexec/getty/subr.c
==============================================================================
--- head/libexec/getty/subr.c	Sun Feb  4 18:39:58 2018	(r328856)
+++ head/libexec/getty/subr.c	Sun Feb  4 18:40:36 2018	(r328857)
@@ -539,7 +539,7 @@ static struct speedtab {
 	{ 57600, B57600 },
 	{ 115200, B115200 },
 	{ 230400, B230400 },
-	{ 0 }
+	{ 0, 0 }
 };
 
 int



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