summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Triplett <josh@freedesktop.org>2006-03-05 12:10:24 -0800
committerJosh Triplett <josh@freedesktop.org>2006-03-05 12:10:24 -0800
commit6f5572427ef533fee89daedfb1d08afefa49e611 (patch)
treea9c01b7b098df27232fbdd2a8c6e5ab589dccfdd
parent20fc59d2e4838060eb2c4c361864522e7ba7a01d (diff)
Fix another signedness error.
-rw-r--r--src/xamine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xamine.c b/src/xamine.c
index 1f987b7..aee5a47 100644
--- a/src/xamine.c
+++ b/src/xamine.c
@@ -275,7 +275,7 @@ XaminedItem *xamine(XamineConversation *conversation, XamineDirection dir,
return NULL;
/* Dissect the data based on the definition. */
- int offset = 0;
+ unsigned int offset = 0;
return xamine_definition(conversation, &data, &size, &offset,
definition, NULL);
}