All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stephen Smalley <sds@tycho.nsa.gov>
To: Nick Kralevich <nnk@google.com>, selinux@tycho.nsa.gov
Subject: Re: [PATCH] policy_define.c: fix compiler warnings
Date: Mon, 15 Jun 2015 09:34:14 -0400	[thread overview]
Message-ID: <557ED456.80202@tycho.nsa.gov> (raw)
In-Reply-To: <1434206958-9234-1-git-send-email-nnk@google.com>

On 06/13/2015 10:49 AM, Nick Kralevich wrote:
> Fixes compiler warnings all similar to the following:
> 
> host C: checkpolicy <= external/selinux/checkpolicy/policy_define.c
> external/selinux/checkpolicy/policy_define.c:1572:2: warning: comparison of integers of different signs: 'int' and 'uint32_t' (aka 'unsigned int') [-Wsign-compare]
>         ebitmap_for_each_bit(&tclasses, node, i) {
>         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> external/selinux/checkpolicy/../libsepol/include/sepol/policydb/ebitmap.h:76:39: note: expanded from macro 'ebitmap_for_each_bit'
>         for (bit = ebitmap_start(e, &n); bit < ebitmap_length(e); bit = ebitmap_next(&n, bit)) \
>                                              ^ ~~~~~~~~~~~~~~~~~
> 
> Signed-off-by: Nick Kralevich <nnk@google.com>

Thanks, applied.

> ---
>  checkpolicy/policy_define.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/checkpolicy/policy_define.c b/checkpolicy/policy_define.c
> index 093bded..27d8fe7 100644
> --- a/checkpolicy/policy_define.c
> +++ b/checkpolicy/policy_define.c
> @@ -1521,7 +1521,8 @@ int define_compute_type_helper(int which, avrule_t ** rule)
>  	ebitmap_node_t *node;
>  	avrule_t *avrule;
>  	class_perm_node_t *perm;
> -	int i, add = 1;
> +	uint32_t i;
> +	int add = 1;
>  
>  	avrule = malloc(sizeof(avrule_t));
>  	if (!avrule) {
> @@ -2745,7 +2746,7 @@ static int dominate_role_recheck(hashtab_key_t key __attribute__ ((unused)),
>  	role_datum_t *rdp = (role_datum_t *) arg;
>  	role_datum_t *rdatum = (role_datum_t *) datum;
>  	ebitmap_node_t *node;
> -	int i;
> +	uint32_t i;
>  
>  	/* Don't bother to process against self role */
>  	if (rdatum->s.value == rdp->s.value)
> 

      parent reply	other threads:[~2015-06-15 13:34 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-13 14:49 [PATCH] policy_define.c: fix compiler warnings Nick Kralevich
2015-06-14 20:33 ` Jeffrey Vander Stoep
2015-06-15 13:34 ` Stephen Smalley [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=557ED456.80202@tycho.nsa.gov \
    --to=sds@tycho.nsa.gov \
    --cc=nnk@google.com \
    --cc=selinux@tycho.nsa.gov \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.