summaryrefslogtreecommitdiff
path: root/src/journal-remote/journal-upload.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-02-09 16:32:55 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-02-10 14:43:10 +0100
commit61b315de9b9a0688d63142947d0e5ce76e6bc7ac (patch)
treed68ce69d8813cbc22565714952e21cf84453fe94 /src/journal-remote/journal-upload.c
parent170d40260ba4484726d247b679089a394b5ffcf6 (diff)
downloadsystemd-61b315de9b9a0688d63142947d0e5ce76e6bc7ac.tar.gz
Add comma in structured initialization in a few places
It just looks nicer…
Diffstat (limited to 'src/journal-remote/journal-upload.c')
-rw-r--r--src/journal-remote/journal-upload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal-remote/journal-upload.c b/src/journal-remote/journal-upload.c
index 455a6c942e..4d6041e911 100644
--- a/src/journal-remote/journal-upload.c
+++ b/src/journal-remote/journal-upload.c
@@ -413,7 +413,7 @@ static int setup_uploader(Uploader *u, const char *url, const char *state_file)
assert(url);
*u = (Uploader) {
- .input = -1
+ .input = -1,
};
host = STARTSWITH_SET(url, "http://", "https://");