From fe51046eda122b4b496f3b847ba7f0d3e6ebf83f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Thu, 3 Aug 2000 19:53:39 +0200
Subject: [PATCH] len is signed.

Rev: src/stralloc.h:1.44
---
 src/stralloc.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/stralloc.h b/src/stralloc.h
index 3c9a84da68..16eb083fef 100644
--- a/src/stralloc.h
+++ b/src/stralloc.h
@@ -5,7 +5,7 @@
 \*/
 
 /*
- * $Id: stralloc.h,v 1.43 2000/08/03 16:30:16 grubba Exp $
+ * $Id: stralloc.h,v 1.44 2000/08/03 17:53:39 grubba Exp $
  */
 #ifndef STRALLOC_H
 #define STRALLOC_H
@@ -20,7 +20,7 @@
 struct pike_string
 {
   ptrdiff_t refs;
-  size_t len;
+  ptrdiff_t len;
   size_t hval;
   struct pike_string *next; 
   size_t size_shift; /* 30/62 bit waste, but good for alignment... */
-- 
GitLab