You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use correct printf format specifier for filesize. (#2158)
The default value for filesize for scripts is 2.5GB, so more than 2^31
bytes, previously this caused a message like
```
/home/sitowert/domjudge/bin/runguard [56839 @ 0.001495]: verbose: setting filesize limit to -1610612736 bytes
```
After this commit, it is:
```
/home/sitowert/domjudge/bin/runguard [56839 @ 0.001521]: verbose: setting filesize limit to 2684354560 bytes
```
(cherry picked from commit a12c260)
0 commit comments