summaryrefslogtreecommitdiff
blob: c34b8ccacbda05c322043e111362062af4759908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- libMUSCLE/globalslinux.cpp.old	2010-03-14 19:03:14.000000000 +1300
+++ libMUSCLE/globalslinux.cpp	2010-03-14 19:11:09.000000000 +1300
@@ -159,7 +159,7 @@
 			}
 		return DEFAULT_RAM;
 		}
-	int Bytes = atoi(pMem+9)*1000;
+	long Bytes = atol(pMem+9)*1000;
 	return ((double) Bytes)/1e6;
 	}
 
--- libMUSCLE/progress.cpp.old	2010-03-14 19:50:27.000000000 +1300
+++ libMUSCLE/progress.cpp	2010-03-14 19:51:07.000000000 +1300
@@ -48,7 +48,7 @@
 	if (MB < 0)
 		return "";
 
-	static char Str[9];
+	static char Str[11];
 	static double MaxMB = 0;
 	static double RAMMB = 0;