diff string.c @ 29:3cc5e4a42344

Missed registration for *@Real Number in previous commit
author Mike Pavone <pavone@retrodev.com>
date Sat, 27 Jun 2009 01:50:33 -0400
parents 94c885692eb5
children
line wrap: on
line diff
--- a/string.c	Fri Jun 26 19:57:46 2009 -0400
+++ b/string.c	Sat Jun 27 01:50:33 2009 -0400
@@ -48,7 +48,7 @@
 #ifndef SEGA
 int vis_realtostring(datum ** inputlist, queue_entry * worker_entry)
 {
-	char temp_buf[30];//Is this enough?
+	char temp_buf[512];//Is this enough?
 	datum * output;
 	sprintf(temp_buf, "%f", inputlist[0]->c.real);
 	release_ref(inputlist[0]);