summaryrefslogtreecommitdiff
path: root/src/journal/journald-server.h
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/journal/journald-server.h
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/journal/journald-server.h')
-rw-r--r--src/journal/journald-server.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journald-server.h b/src/journal/journald-server.h
index 84efb04265..fb512dcfeb 100644
--- a/src/journal/journald-server.h
+++ b/src/journal/journald-server.h
@@ -20,7 +20,7 @@ typedef struct Server Server;
#include "time-util.h"
#include "varlink.h"
-#define JOURNALD_LOG_RATELIMIT ((RateLimit) { .interval = 60 * USEC_PER_SEC, .burst = 3 })
+#define JOURNALD_LOG_RATELIMIT ((const RateLimit) { .interval = 60 * USEC_PER_SEC, .burst = 3 })
typedef enum Storage {
STORAGE_AUTO,