logind: drop pointless UINT64_C() macro use

This commit is contained in:
Lennart Poettering 2016-05-05 22:49:25 +02:00
parent c5a11ae268
commit 64b5689647
1 changed files with 3 additions and 3 deletions

View File

@ -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;