git: 9front

Download patch

ref: 4fe6b8179aeff9ba03aee41d374142adc0ca8b1c
parent: ed9468f1f61da66744df288070251f4c030cec5d
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Tue Jan 5 20:19:05 EST 2016

libmp: silence compiler warning for strtomp

--- a/sys/src/libmp/port/strtomp.c
+++ b/sys/src/libmp/port/strtomp.c
@@ -88,7 +88,7 @@
 	next = p;
 
 	i = 0;
-	x = 0;
+	x = y = 0;
 	while(p > a){
 		y = tab.t10[*(uchar*)--p];
 		x |= y << i;
--