summaryrefslogtreecommitdiff
path: root/read.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1996-05-09 18:28:09 +0000
committerRoland McGrath <roland@redhat.com>1996-05-09 18:28:09 +0000
commit58af8d9dd1f9414917aafd81b595453fcc39e3ab (patch)
treee12a376196e9dd26e9c159b9991297168baf8d74 /read.c
parentabe5f6444015900837be5c499eb478929b6512f4 (diff)
downloadgunmake-58af8d9dd1f9414917aafd81b595453fcc39e3ab.tar.gz
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* read.c (parse_file_seq): Use `int' for char arg to avoid widening conflict issues. * dep.h: Fix prototype.
Diffstat (limited to 'read.c')
-rw-r--r--read.c2
1 files changed, 1 insertions, 1 deletions
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;
{