summaryrefslogtreecommitdiff
path: root/lib/crypto
diff options
context:
space:
mode:
authorGary Lockyer <gary@catalyst.net.nz>2020-05-05 13:47:39 +1200
committerAndreas Schneider <asn@cryptomilk.org>2020-05-08 09:31:31 +0000
commit13a2f70a4dd6dd68e0dbd0379d35409c5f100f06 (patch)
tree779d7945079d77c30ec21c26920e1e5f4b9c5ecd /lib/crypto
parentc2b0071460c09eb24d12880e54e2f80c77834ebb (diff)
downloadsamba-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 'lib/crypto')
-rw-r--r--lib/crypto/py_crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/py_crypto.c b/lib/crypto/py_crypto.c
index c85cd2c13d2..32b946eee8f 100644
--- a/lib/crypto/py_crypto.c
+++ b/lib/crypto/py_crypto.c
@@ -91,7 +91,7 @@ static const char py_crypto_arcfour_crypt_blob_doc[] = "arcfour_crypt_blob(data,
static PyMethodDef py_crypto_methods[] = {
{ "arcfour_crypt_blob", (PyCFunction)py_crypto_arcfour_crypt_blob, METH_VARARGS, py_crypto_arcfour_crypt_blob_doc },
- { NULL },
+ {0},
};
static struct PyModuleDef moduledef = {