rt: Fix whitespace

This commit is contained in:
Brian Anderson
2012-03-31 23:12:06 -07:00
parent cf0c4cd7d2
commit 21064637ed
20 changed files with 109 additions and 99 deletions

View File

@@ -84,10 +84,10 @@ static size_t
get_max_stk_size() {
char *maxsz = getenv(RUST_MAX_STACK);
if (maxsz) {
return strtol(maxsz, NULL, 0);
return strtol(maxsz, NULL, 0);
}
else {
return 1024*1024*8;
return 1024*1024*8;
}
}