From b2728187cc8d587174cfdbac7afcf0fec612b219 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Fri, 23 Jun 2000 20:04:25 +0000 Subject: [PATCH] length should be unsigned in omapi_data_dereference --- lib/omapi/data.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/omapi/data.c b/lib/omapi/data.c index 23a320b125..4813b85eb5 100644 --- a/lib/omapi/data.c +++ b/lib/omapi/data.c @@ -15,7 +15,7 @@ * SOFTWARE. */ -/* $Id: data.c,v 1.14 2000/06/21 22:01:16 tale Exp $ */ +/* $Id: data.c,v 1.15 2000/06/23 20:04:25 tale Exp $ */ /* Principal Author: Ted Lemon */ @@ -117,7 +117,7 @@ omapi_data_reference(omapi_data_t **r, omapi_data_t *h) { void omapi_data_dereference(omapi_data_t **h) { - int length = 0; + unsigned int length = 0; REQUIRE(h != NULL && *h != NULL);