svn commit: r301513 - head/usr.bin/indent

Pedro F. Giffuni pfg at FreeBSD.org
Mon Jun 6 16:10:53 UTC 2016


Author: pfg
Date: Mon Jun  6 16:10:52 2016
New Revision: 301513
URL: https://svnweb.freebsd.org/changeset/base/301513

Log:
  indent(1): Fix typo.
  
  It's typedef, not typdef.
  
  Obtained from:	OpenBSD (CVS rev. 1.20)
  MFC after:	3 days

Modified:
  head/usr.bin/indent/lexi.c

Modified: head/usr.bin/indent/lexi.c
==============================================================================
--- head/usr.bin/indent/lexi.c	Mon Jun  6 15:01:24 2016	(r301512)
+++ head/usr.bin/indent/lexi.c	Mon Jun  6 16:10:52 2016	(r301513)
@@ -79,7 +79,7 @@ struct templ specials[1000] =
     {"double", 4},
     {"long", 4},
     {"short", 4},
-    {"typdef", 4},
+    {"typedef", 4},
     {"unsigned", 4},
     {"register", 4},
     {"static", 4},


More information about the svn-src-all mailing list