diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-11-17 23:24:49 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-11-18 01:34:31 +0100 |
commit | 718ca77232c8f6e5e368aca552c26996966b86ba (patch) | |
tree | 8f0dad75b55878c1942138eb7fbaf97140a75579 /src/home/homectl.c | |
parent | test-sizeof: add intmax types (diff) | |
download | systemd-718ca77232c8f6e5e368aca552c26996966b86ba.tar.xz systemd-718ca77232c8f6e5e368aca552c26996966b86ba.zip |
shared/json: use int64_t instead of intmax_t
We were already asserting that the intmax_t and uintmax_t types
are the same as int64_t and uint64_t. Pretty much everywhere in
the code base we use the latter types. In principle intmax_t could
be something different on some new architecture, and then the code would
fail to compile or behave differently. We actually do not want the code
to behave differently on those architectures, because that'd break
interoperability. So let's just use int64_t/uint64_t since that's what
we indend to use.
Diffstat (limited to 'src/home/homectl.c')
-rw-r--r-- | src/home/homectl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/home/homectl.c b/src/home/homectl.c index a4f3116544..f6a2199395 100644 --- a/src/home/homectl.c +++ b/src/home/homectl.c @@ -759,7 +759,7 @@ static int update_last_change(JsonVariant **v, bool with_password, bool override c = json_variant_by_key(*v, "lastChangeUSec"); if (c) { - uintmax_t u; + uint64_t u; if (!override) goto update_password; @@ -782,7 +782,7 @@ update_password: c = json_variant_by_key(*v, "lastPasswordChangeUSec"); if (c) { - uintmax_t u; + uint64_t u; if (!override) return 0; |