summaryrefslogtreecommitdiff
path: root/src/import
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2022-11-18 18:29:16 +0100
committerLuca Boccassi <luca.boccassi@gmail.com>2022-11-22 01:30:55 +0100
commit7d1e61cab6d27ed95372a313df3cd4538cf2880e (patch)
tree6a728c8fe92653b263a0092ecb1ec7dcb66207e6 /src/import
parent47b3e96647e18e8ca219c4792ab769344eea11bb (diff)
downloadsystemd-7d1e61cab6d27ed95372a313df3cd4538cf2880e.tar.gz
tree-wide: make constant ratelimit compound actually const
The compiler should recognize that these are constant expressions, but let's better make this explicit, so that the linker can safely share the initializations all over the place.
Diffstat (limited to 'src/import')
-rw-r--r--src/import/import-fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/import/import-fs.c b/src/import/import-fs.c
index 4e7250c02e..ca5d33c008 100644
--- a/src/import/import-fs.c
+++ b/src/import/import-fs.c
@@ -188,7 +188,7 @@ static int import_fs(int argc, char *argv[], void *userdata) {
(void) mkdir_parents_label(dest, 0700);
- progress.limit = (RateLimit) { 200*USEC_PER_MSEC, 1 };
+ progress.limit = (const RateLimit) { 200*USEC_PER_MSEC, 1 };
{
BLOCK_SIGNALS(SIGINT, SIGTERM);