From 0d244b37ba24ec7564d15a23e7fa1c864c5bd0bb Mon Sep 17 00:00:00 2001
From: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Tue, 7 Apr 2009 00:03:27 -0300
Subject: [PATCH 07/38] Make struct jtrans' len unsigned

It makes no sense for it to be signed, as we never store negative numbers
in it.

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>
---
 libjio/libjio.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libjio/libjio.h b/libjio/libjio.h
index f73faf7..aeea19e 100644
--- a/libjio/libjio.h
+++ b/libjio/libjio.h
@@ -47,7 +47,7 @@ struct jtrans {
 	int id;			/* transaction id */
 	uint32_t flags;		/* transaction flags */
 	unsigned int numops;	/* quantity of operations in the list */
-	ssize_t len;		/* transaction's length */
+	size_t len;		/* transaction's length */
 	pthread_mutex_t lock;	/* used to modify the operation list */
 	struct joper *op;	/* list of operations */
 };
-- 
1.6.2.2.646.gb214

