diff options
author | Christian Ambach <ambi@samba.org> | 2012-07-13 17:32:19 +0200 |
---|---|---|
committer | Christian Ambach <ambi@samba.org> | 2012-07-18 15:49:51 +0200 |
commit | 31f0d304f178620f3928b7642b571ee27c37de85 (patch) | |
tree | f0ca3ba066f0e70936446f3347a965f69344af95 | |
parent | d0d05f8474ed1882d373f042aba2c0209247678a (diff) | |
download | samba-31f0d304f178620f3928b7642b571ee27c37de85.tar.gz samba-31f0d304f178620f3928b7642b571ee27c37de85.tar.bz2 samba-31f0d304f178620f3928b7642b571ee27c37de85.zip |
s3:smbstatus fix a compiler warning
about comparison of signed with unsigned
-rw-r--r-- | source3/utils/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/status.c b/source3/utils/status.c index 3d16f8e3e7..1f85491c7d 100644 --- a/source3/utils/status.c +++ b/source3/utils/status.c @@ -191,7 +191,7 @@ static void print_brl(struct file_id id, void *private_data) { static int count; - int i; + unsigned int i; static const struct { enum brl_type lock_type; const char *desc; |