diff options
author | Mattias Andrée <maandree@kth.se> | 2016-07-10 16:00:34 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-07-10 16:00:34 +0200 |
commit | 58f8347e84d2820cada64c513bb0f2b81ecd494a (patch) | |
tree | 758f5f2241c384b8d0e8ce349498784515ae5607 /src/mds-clipboard.c | |
parent | Add -l flags for mds-libinput (diff) | |
download | mds-58f8347e84d2820cada64c513bb0f2b81ecd494a.tar.gz mds-58f8347e84d2820cada64c513bb0f2b81ecd494a.tar.bz2 mds-58f8347e84d2820cada64c513bb0f2b81ecd494a.tar.xz |
Fix new GCC warnings
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | src/mds-clipboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mds-clipboard.c b/src/mds-clipboard.c index 30213ea..5d54f79 100644 --- a/src/mds-clipboard.c +++ b/src/mds-clipboard.c @@ -648,7 +648,7 @@ int clipboard_death(const char* recv_client_id) int clipboard_add(int level, const char* time_to_live, const char* recv_client_id) { int autopurge = CLIPITEM_AUTOPURGE_UPON_CLOCK; - uint64_t client = recv_client_id ? parse_client_id(recv_client_id) : 0; + uint64_t client = parse_client_id(recv_client_id); clipitem_t new_clip; fail_if (clipboard_purge(level, NULL)); |