diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-03-03 05:07:10 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-03-04 23:10:13 +0100 |
commit | f5fbe71d956957ca7ceb6777aed05a416fc83a43 (patch) | |
tree | 67358d417604030867a979f216bbb79939a37844 /src/import/export-raw.c | |
parent | table: drop last SIZE_MAX from table_set_sort() and table_set_display() (diff) | |
download | systemd-f5fbe71d956957ca7ceb6777aed05a416fc83a43.tar.xz systemd-f5fbe71d956957ca7ceb6777aed05a416fc83a43.zip |
tree-wide: use UINT64_MAX or friends
Diffstat (limited to 'src/import/export-raw.c')
-rw-r--r-- | src/import/export-raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/import/export-raw.c b/src/import/export-raw.c index 3e0348f4c1..d42c56172f 100644 --- a/src/import/export-raw.c +++ b/src/import/export-raw.c @@ -95,7 +95,7 @@ int raw_export_new( .input_fd = -1, .on_finished = on_finished, .userdata = userdata, - .last_percent = (unsigned) -1, + .last_percent = UINT_MAX, .progress_ratelimit = { 100 * USEC_PER_MSEC, 1 }, }; |