From 58af8d9dd1f9414917aafd81b595453fcc39e3ab Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 9 May 1996 18:28:09 +0000 Subject: Thu May 9 13:54:49 1996 Roland McGrath * read.c (parse_file_seq): Use `int' for char arg to avoid widening conflict issues. * dep.h: Fix prototype. --- dep.h | 4 ++-- read.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dep.h b/dep.h index 550c68a..fa3e073 100644 --- a/dep.h +++ b/dep.h @@ -1,5 +1,5 @@ /* Definitions of dependency data structures for GNU Make. -Copyright (C) 1988, 1989, 1991, 1992, 1993 Free Software Foundation, Inc. +Copyright (C) 1988, 1989, 1991, 1992, 1993, 1996 Free Software Foundation, Inc. This file is part of GNU Make. GNU Make is free software; you can redistribute it and/or modify @@ -44,7 +44,7 @@ extern struct nameseq *multi_glob PARAMS ((struct nameseq *chain, unsigned int s #ifdef VMS extern struct nameseq *parse_file_seq (); #else -extern struct nameseq *parse_file_seq PARAMS ((char **stringp, char stopchar, unsigned int size, int strip)); +extern struct nameseq *parse_file_seq PARAMS ((char **stringp, int stopchar, unsigned int size, int strip)); #endif extern char *tilde_expand PARAMS ((char *name)); diff --git a/read.c b/read.c index db35e10..8d42aa8 100644 --- a/read.c +++ b/read.c @@ -1544,7 +1544,7 @@ find_percent (pattern) struct nameseq * parse_file_seq (stringp, stopchar, size, strip) char **stringp; - char stopchar; + int stopchar; unsigned int size; int strip; { -- cgit v1.2.3