From: Yu Watanabe Date: Tue, 30 Jul 2019 10:29:44 +0000 (+0900) Subject: networkctl: TABLE_BPS requires uint64_t X-Git-Tag: v243-rc1~5 X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fsystemd.git;a=commitdiff_plain;h=45160216b743b03c18193f711a69f3e837888496 networkctl: TABLE_BPS requires uint64_t --- diff --git a/src/network/networkctl.c b/src/network/networkctl.c index 03b916d4129..654955ba087 100644 --- a/src/network/networkctl.c +++ b/src/network/networkctl.c @@ -1275,7 +1275,7 @@ static int link_status_one( r = table_add_many(table, TABLE_EMPTY, TABLE_STRING, "Speed:", - TABLE_BPS, info->speed); + TABLE_BPS, (uint64_t) info->speed); if (r < 0) return r; }