diff options
author | infirit <[email protected]> | 2014-12-17 15:43:06 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-12-17 17:23:02 +0100 |
commit | 6b1081dea1042b31e2708ac5d5162ca0af91fb46 (patch) | |
tree | 22782fc31083a3057885943694b97f0fbbb47070 | |
parent | 894006a93e2cf38810801dfb2dfa4aafcf3c3d76 (diff) | |
download | mate-system-monitor-6b1081dea1042b31e2708ac5d5162ca0af91fb46.tar.bz2 mate-system-monitor-6b1081dea1042b31e2708ac5d5162ca0af91fb46.tar.xz |
Make maximum nice value 19 instead of 20 on Linux
-rw-r--r-- | src/procdialogs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/procdialogs.h b/src/procdialogs.h index a126a45..2a15832 100644 --- a/src/procdialogs.h +++ b/src/procdialogs.h @@ -26,7 +26,7 @@ /* These are the actual range of settable values. Values outside this range are scaled back to these limits. So show these limits in the slider */ -#ifdef linux +#ifdef __linux__ #define RENICE_VAL_MIN -20 #define RENICE_VAL_MAX 19 #else /* ! linux */ |