Various fixes, mostly for win32 console

This commit is contained in:
Alexander S. Aganichev
2000-11-06 14:26:34 +00:00
parent c3374170a9
commit f0b3dea792
25 changed files with 473 additions and 625 deletions

View File

@@ -235,8 +235,8 @@ char *uuestr_otemp;
static int
UUEncodeStream (FILE *outfile, FILE *infile, int encoding, long linperfile)
{
unsigned char *itemp = (char *) uuestr_itemp;
unsigned char *otemp = (char *) uuestr_otemp;
unsigned char *itemp = (unsigned char *) uuestr_itemp;
unsigned char *otemp = (unsigned char *) uuestr_otemp;
unsigned char *optr, *table, *tptr;
int index, count;
long line=0;