svn commit: r328857 - head/libexec/getty

Edward Tomasz Napierala trasz at FreeBSD.org
Sun Feb 4 18:40:37 UTC 2018


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


More information about the svn-src-all mailing list