summaryrefslogtreecommitdiff
path: root/src/login
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-05-05 22:49:25 +0200
committerLennart Poettering <lennart@poettering.net>2016-05-05 22:50:09 +0200
commit64b5689647c7e12522ead1108037afe0b58b0dfd (patch)
treef10d89af58bf21c1894b142cb1da91f3461d4be2 /src/login
parentc5a11ae268cf4188caf74d1acfd506a606e85967 (diff)
logind: drop pointless UINT64_C() macro use
Diffstat (limited to 'src/login')
-rw-r--r--src/login/logind.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/login/logind.c b/src/login/logind.c
index 1cbc8f9fcc..caf149cfb7 100644
--- a/src/login/logind.c
+++ b/src/login/logind.c
@@ -62,9 +62,9 @@ static void manager_reset_config(Manager *m) {
m->idle_action = HANDLE_IGNORE;
m->runtime_dir_size = PAGE_ALIGN((size_t) (physical_memory() / 10)); /* 10% */
- m->user_tasks_max = UINT64_C(12288);
- m->sessions_max = UINT64_C(8192);
- m->inhibitors_max = UINT64_C(8192);
+ m->user_tasks_max = 12288;
+ m->sessions_max = 8192;
+ m->inhibitors_max = 8192;
m->kill_user_processes = KILL_USER_PROCESSES;