URL: https://github.com/SSSD/sssd/pull/51 Author: celestian Title: #51: TOOL: Fixing of sign-compare warning Action: opened
PR body: """ Warning was on src/tools/tools_util.c:116. (We have fixed this issue at master.) """ To pull the PR as Git branch: git remote add ghsssd https://github.com/SSSD/sssd git fetch ghsssd pull/51/head:pr51 git checkout pr51
From 566ac847f7edb527a999297cef01c261e7d83cc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C4=8Cech?= <[email protected]> Date: Mon, 17 Oct 2016 16:24:26 +0200 Subject: [PATCH] TOOL: Fixing of sign-compare warning Warning was on src/tools/tools_util.c:116. --- src/tools/tools_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/tools_util.c b/src/tools/tools_util.c index 82462f3..ea63f62 100644 --- a/src/tools/tools_util.c +++ b/src/tools/tools_util.c @@ -94,7 +94,7 @@ int parse_groups(TALLOC_CTX *mem_ctx, const char *optstr, char ***_out) char *orig, *n, *o; char delim = ','; unsigned int tokens = 1; - int i; + unsigned int i; orig = talloc_strdup(mem_ctx, optstr); if (!orig) return ENOMEM;
_______________________________________________ sssd-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
