summaryrefslogtreecommitdiff
path: root/copt
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>2002-07-22 23:35:31 +0200
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:48:47 +0200
commit673f690a37f6673a3262e933709c79de8a66f48c (patch)
tree3acd007863bf23ce8549f9edb5e51d23a3bc6078 /copt
parent352e3b3230dfc6746be6d53325ffe1e33efc5289 (diff)
downloaddev86-673f690a37f6673a3262e933709c79de8a66f48c.tar.gz
Import Dev86src-0.16.4.tar.gzv0.16.4
Diffstat (limited to 'copt')
-rw-r--r--copt/copt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/copt/copt.c b/copt/copt.c
index cc31541..35588d3 100644
--- a/copt/copt.c
+++ b/copt/copt.c
@@ -183,7 +183,7 @@ static char *readline(FILE *fp)
* has been found in the first column of the input line. All lines with the
* 'comment' character in the first position will be skipped.
*/
-static struct line_s *readlist(FILE *fp, char quit, char comment)
+static struct line_s *readlist(FILE *fp, int quit, int comment)
{
struct line_s *lp;
struct line_s *first_line = NULL;
@@ -293,7 +293,7 @@ static void clearpattern(void)
/*
* Read input file
*/
-static void readinfile(char *filename, char comment)
+static void readinfile(char *filename, int comment)
{
FILE *fp;