diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-08-27 06:48:04 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-08-27 06:48:04 +0200 |
commit | cf4b2f9906c596b9e0d5f2ae8fbdc9f4e4bc2864 (patch) | |
tree | 1208b8c317c34875a5dabb19a36ff4f5f36e94e7 /src/journal-remote/journal-remote-write.h | |
parent | po: update Japanese translation (diff) | |
download | systemd-cf4b2f9906c596b9e0d5f2ae8fbdc9f4e4bc2864.tar.xz systemd-cf4b2f9906c596b9e0d5f2ae8fbdc9f4e4bc2864.zip |
tree-wide: use unsigned for refcount
Diffstat (limited to 'src/journal-remote/journal-remote-write.h')
-rw-r--r-- | src/journal-remote/journal-remote-write.h | 2 |
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); |