shithub: mc

Download patch

ref: 4ef66b11ded8bc99387219a81328d33c775ce7a9
parent: b8b1b240c2300954903272a543d9146b59d4f997
author: Ori Bernstein <[email protected]>
date: Fri Jan 18 09:08:33 EST 2013

Don't return from a void function.

--- a/libstd/alloc.myr
+++ b/libstd/alloc.myr
@@ -89,7 +89,7 @@
 
 /* Frees a slice */
 generic slfree	 = {sl
-	-> bytefree(sl castto(byte*), sl.len * sizeof(@a))
+	bytefree(sl castto(byte*), sl.len * sizeof(@a))
 }
 
 /* Grows a slice */