changeset 32813:c4edf25471a1

Reduce buffer to reasonable size.
author ib
date Sun, 13 Feb 2011 18:04:43 +0000
parents b72f64598fe6
children 607521cb5616
files gui/skin/cut.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gui/skin/cut.c	Sun Feb 13 18:02:14 2011 +0000
+++ b/gui/skin/cut.c	Sun Feb 13 18:04:43 2011 +0000
@@ -38,7 +38,7 @@
 
 int cutItemToInt( char * in,char sep,int num )
 {
- char tmp[512];
+ char tmp[64];
  cutItem( in,tmp,sep,num );
  return atoi( tmp );
 }