summaryrefslogtreecommitdiff
path: root/src/journal-remote
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2018-08-27 13:48:04 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2018-08-27 13:48:04 +0900
commitcf4b2f9906c596b9e0d5f2ae8fbdc9f4e4bc2864 (patch)
tree1208b8c317c34875a5dabb19a36ff4f5f36e94e7 /src/journal-remote
parent56663345dfb1dd3ff23cac5fbc955aba54477efa (diff)
downloadsystemd-cf4b2f9906c596b9e0d5f2ae8fbdc9f4e4bc2864.tar.gz
tree-wide: use unsigned for refcount
Diffstat (limited to 'src/journal-remote')
-rw-r--r--src/journal-remote/journal-remote-write.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal-remote/journal-remote-write.h b/src/journal-remote/journal-remote-write.h
index 7ed32aa5aa..9f3df423d8 100644
--- a/src/journal-remote/journal-remote-write.h
+++ b/src/journal-remote/journal-remote-write.h
@@ -16,7 +16,7 @@ typedef struct Writer {
uint64_t seqnum;
- int n_ref;
+ unsigned n_ref;
} Writer;
Writer* writer_new(RemoteServer* server);