From eebc0518639d15cc92ecd221f686731febdb8023 Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Sun, 30 Apr 2000 18:51:58 +0000 Subject: 11032: Fix signed-ness of a local. --- ChangeLog | 4 ++++ Src/init.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a843213e6..c92ed4c79 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-04-30 Bart Schaefer + + * 11032: Src/init.c: Fix signed-ness problem reported by OPK. + 2000-04-30 Oliver Kiddle * 11031: Src/math.c, Src/glob.c, Src/module.c, Src/Zle/compcore.c diff --git a/Src/init.c b/Src/init.c index e5972184c..ac62b481a 100644 --- a/Src/init.c +++ b/Src/init.c @@ -905,7 +905,7 @@ source(char *s) int oldshst, osubsh, oloops; FILE *obshin; char *old_scriptname = scriptname, *us; - char *ocs; + unsigned char *ocs; int ocsp; if (!s || -- cgit 1.4.1