diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2012-02-08 14:17:17 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-02-08 16:00:22 +0100 |
commit | 24ed8c59244de695e370055fa3a1af418029d8b9 (patch) | |
tree | 5545610cd44f2f374be3746d078d51b793ca55bf /source4/lib | |
parent | 773182f186f218b45abd84b996b37f27a07e2660 (diff) | |
download | samba-24ed8c59244de695e370055fa3a1af418029d8b9.tar.gz |
regshell: Fix a counter that can actually be non-zero.
This was a regression caused by one of the unsigned patches.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Wed Feb 8 16:00:22 CET 2012 on sn-devel-104
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/registry/tools/regshell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/tools/regshell.c b/source4/lib/registry/tools/regshell.c index 6bd7fd3b8bd..1a4067bce35 100644 --- a/source4/lib/registry/tools/regshell.c +++ b/source4/lib/registry/tools/regshell.c @@ -428,7 +428,7 @@ static char **reg_complete_command(const char *text, int start, int end) /* Complete command */ char **matches; size_t len, samelen=0; - unsigned int i, count=1; + int i, count=1; matches = malloc_array_p(char *, MAX_COMPLETIONS); if (!matches) return NULL; |