From: Volker Lendecke Date: Sun, 1 Dec 2019 15:10:18 +0000 (+0100) Subject: audit_log: Align integer types X-Git-Tag: ldb-2.1.0~137 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f53c8fbd7ff2be62c1c488cd56507516d85c670d;p=thirdparty%2Fsamba.git audit_log: Align integer types Signed-off-by: Volker Lendecke Reviewed-by: David Disseldorp --- diff --git a/source4/dsdb/samdb/ldb_modules/audit_log.c b/source4/dsdb/samdb/ldb_modules/audit_log.c index ef674950100..7cc3ff67d77 100644 --- a/source4/dsdb/samdb/ldb_modules/audit_log.c +++ b/source4/dsdb/samdb/ldb_modules/audit_log.c @@ -109,7 +109,7 @@ struct audit_private { */ static bool has_password_changed(const struct ldb_message *message) { - int i; + unsigned int i; if (message == NULL) { return false; }