diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-10-20 03:00:46 +0900 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2018-10-19 22:19:12 +0200 |
commit | 14cb109d4594ff89e8d5449a89c38e4b0d78afd8 (patch) | |
tree | 39d18b57229b9766134077240307b7efa588904f /src/login/logind-utmp.c | |
parent | 347a19343c7975fc4c2d627150fce4b4e75f91ac (diff) | |
download | systemd-14cb109d4594ff89e8d5449a89c38e4b0d78afd8.tar.gz |
tree-wide: replace 'unsigned int' with 'unsigned'
Diffstat (limited to 'src/login/logind-utmp.c')
-rw-r--r-- | src/login/logind-utmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/login/logind-utmp.c b/src/login/logind-utmp.c index 8bdd4ab6bf..3a5a333496 100644 --- a/src/login/logind-utmp.c +++ b/src/login/logind-utmp.c @@ -24,7 +24,7 @@ _const_ static usec_t when_wall(usec_t n, usec_t elapse) { usec_t left; - unsigned int i; + unsigned i; static const int wall_timers[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 25, 40, 55, 70, 100, 130, 150, 180, |