Skip to content

Commit

Permalink
fixed getMemLimit:string to getMemLimit():string
Browse files Browse the repository at this point in the history
  • Loading branch information
mhmerrill committed Nov 15, 2019
1 parent d2470b8 commit 81d420b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ServerConfig.chpl
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ module ServerConfig
var total = memoryUsed() + additionalAmount:uint;
if total > getMemLimit() {
throw new owned ErrorWithMsg("Error: Operation would exceed memory limit ("
+total:string+","+getMemLimit:string+")");
+total:string+","+getMemLimit():string+")");
}
}
}
Expand Down

0 comments on commit 81d420b

Please sign in to comment.