diff options
author | Gary Lockyer <gary@catalyst.net.nz> | 2020-05-05 13:47:39 +1200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2020-05-08 09:31:31 +0000 |
commit | 13a2f70a4dd6dd68e0dbd0379d35409c5f100f06 (patch) | |
tree | 779d7945079d77c30ec21c26920e1e5f4b9c5ecd /source3/rpcclient | |
parent | c2b0071460c09eb24d12880e54e2f80c77834ebb (diff) | |
download | samba-13a2f70a4dd6dd68e0dbd0379d35409c5f100f06.tar.gz |
Fix clang 9 missing-field-initializer warnings
Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/cmd_spotlight.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpcclient/cmd_spotlight.c b/source3/rpcclient/cmd_spotlight.c index 5bc5eb10888..661ada7efb8 100644 --- a/source3/rpcclient/cmd_spotlight.c +++ b/source3/rpcclient/cmd_spotlight.c @@ -456,5 +456,5 @@ struct cmd_set spotlight_commands[] = { .description = "Fetch attributes for a CNID", .usage = "", }, - { NULL } + {0} }; |