git: 9front

Download patch

ref: 262937d74f43c8312920a9cad5b3942613bb5761
parent: 15ac14d4c346d31f70e4339c332854ce80cbdb27
author: ben <ben@rana>
date: Thu Apr 28 04:05:42 EDT 2016

get rid of size printing

--- a/sys/src/libregexp/regcomp.c
+++ b/sys/src/libregexp/regcomp.c
@@ -188,7 +188,6 @@
 	parsetr = node(&plex, TSUB, e0(&plex), nil);
 
 //	prtree(parsetr, 0, 1);
-//	fprint(2, "Program size %ld\n", sizeof(Reprog) + sizeof(Reinst) * plex.instrs + sizeof(Rethread) * maxthr);
 	reprog = malloc(sizeof(Reprog) +
 	                sizeof(Reinst) * plex.instrs +
 	                sizeof(Rethread) * maxthr);
--