summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/tools
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2004-07-07 01:02:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:54 -0500
commit34ca729f733d9d22fc789a5fce6c448b03c96545 (patch)
treeada36cb103aadc3d3999de2a8124d5cba92b1a45 /source4/lib/ldb/tools
parente59e82b90204107a3b6e2e6e3fc52d48634adc7a (diff)
downloadsamba-34ca729f733d9d22fc789a5fce6c448b03c96545.tar.gz
samba-34ca729f733d9d22fc789a5fce6c448b03c96545.tar.bz2
samba-34ca729f733d9d22fc789a5fce6c448b03c96545.zip
r1374: Fix signed/unsigned warnings (actually found by g++) after unsigned int
changes in r1018. (This used to be commit 45b4016530fc0bfa13146f73a503866b5dbed517)
Diffstat (limited to 'source4/lib/ldb/tools')
-rw-r--r--source4/lib/ldb/tools/ldbedit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/tools/ldbedit.c b/source4/lib/ldb/tools/ldbedit.c
index f8e0fbb68a..90a6f94750 100644
--- a/source4/lib/ldb/tools/ldbedit.c
+++ b/source4/lib/ldb/tools/ldbedit.c
@@ -44,7 +44,7 @@ static int modify_record(struct ldb_context *ldb,
{
struct ldb_message mod;
struct ldb_message_element *el;
- int i;
+ unsigned int i;
int count = 0;
mod.dn = msg1->dn;