Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: PATCH: AIX dependencies and AIX compile problem



On Apr 30,  6:54pm, Oliver Kiddle wrote:
} Subject: PATCH: AIX dependencies and AIX compile problem
}
} There may be more to come because I haven't yet got a clean compile: I get
} an error message for lines 925 and 968 of init.c saying 'Operands must be
} pointers to compatible types'

It's just a signed/unsigned thing.

--- zsh-forge/current/Src/init.c	Thu Apr  6 08:28:31 2000
+++ Src/init.c	Sun Apr 30 11:40:26 2000
@@ -905,7 +905,7 @@
     int oldshst, osubsh, oloops;
     FILE *obshin;
     char *old_scriptname = scriptname, *us;
-    char *ocs;
+    unsigned char *ocs;
     int ocsp;
 
     if (!s || 

-- 
Bart Schaefer                                 Brass Lantern Enterprises
http://www.well.com/user/barts              http://www.brasslantern.com



Messages sorted by: Reverse Date, Date, Thread, Author