Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 309341
Collapse All | Expand All

(-)libMUSCLE/globalslinux.cpp.old (-1 / +1 lines)
Lines 159-165 Link Here
159
			}
159
			}
160
		return DEFAULT_RAM;
160
		return DEFAULT_RAM;
161
		}
161
		}
162
	int Bytes = atoi(pMem+9)*1000;
162
	long Bytes = atol(pMem+9)*1000;
163
	return ((double) Bytes)/1e6;
163
	return ((double) Bytes)/1e6;
164
	}
164
	}
165
165
(-)libMUSCLE/progress.cpp.old (-1 / +1 lines)
Lines 48-54 Link Here
48
	if (MB < 0)
48
	if (MB < 0)
49
		return "";
49
		return "";
50
50
51
	static char Str[9];
51
	static char Str[11];
52
	static double MaxMB = 0;
52
	static double MaxMB = 0;
53
	static double RAMMB = 0;
53
	static double RAMMB = 0;
54
54

Return to bug 309341