All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tools/libxl: avoid comparing an unsigned int to -1
@ 2015-03-16 10:12 Koushik Chakravarty
  2015-03-17 15:55 ` Wei Liu
  0 siblings, 1 reply; 3+ messages in thread
From: Koushik Chakravarty @ 2015-03-16 10:12 UTC (permalink / raw)
  To: xen-devel
  Cc: Wei Liu, Ian Jackson, Ian Campbell, Koushik Chakravarty,
	Stefano Stabellini

Signed-off-by: Koushik Chakravarty <koushik.chakravarty@citrix.com>
CC: Ian Jackson <ian.jackson@eu.citrix.com>
CC: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
CC: Ian Campbell <ian.campbell@citrix.com>
CC: Wei Liu <wei.liu2@citrix.com>
---
 tools/libxl/libxl_json.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/libxl/libxl_json.c b/tools/libxl/libxl_json.c
index 98335b0..346929a 100644
--- a/tools/libxl/libxl_json.c
+++ b/tools/libxl/libxl_json.c
@@ -1013,7 +1013,7 @@ out:
 yajl_gen_status libxl__uint64_gen_json(yajl_gen hand, uint64_t val)
 {
     char *num;
-    unsigned int len;
+    int len;
     yajl_gen_status s;
 
 
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-03-18 12:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-16 10:12 [PATCH] tools/libxl: avoid comparing an unsigned int to -1 Koushik Chakravarty
2015-03-17 15:55 ` Wei Liu
2015-03-18 12:32   ` Ian Campbell

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.