svn commit: r348656 - head/usr.bin/vtfontcvt

Ed Maste emaste at FreeBSD.org
Tue Jun 4 18:31:53 UTC 2019


Author: emaste
Date: Tue Jun  4 18:31:52 2019
New Revision: 348656
URL: https://svnweb.freebsd.org/changeset/base/348656

Log:
  vtfontcvt: unwrap a line per style(9)
  
  PR:		205707
  Submitted by:	Dmitry Wagin

Modified:
  head/usr.bin/vtfontcvt/vtfontcvt.c

Modified: head/usr.bin/vtfontcvt/vtfontcvt.c
==============================================================================
--- head/usr.bin/vtfontcvt/vtfontcvt.c	Tue Jun  4 18:31:08 2019	(r348655)
+++ head/usr.bin/vtfontcvt/vtfontcvt.c	Tue Jun  4 18:31:52 2019	(r348656)
@@ -201,8 +201,7 @@ add_char(unsigned curchar, unsigned map_idx, uint8_t *
 			return (1);
 		if (bytes_r != NULL) {
 			gl = add_glyph(bytes_r, map_idx + 1, 0);
-			if (add_mapping(gl, curchar,
-			    map_idx + 1) != 0)
+			if (add_mapping(gl, curchar, map_idx + 1) != 0)
 				return (1);
 		}
 	}


More information about the svn-src-all mailing list