Commit d149d5f5 by Richard Kenner

(n_occurrences): Make arg int, not char.

From-SVN: r8147
parent b88a3142
...@@ -989,7 +989,7 @@ main (argc, argv) ...@@ -989,7 +989,7 @@ main (argc, argv)
static int static int
n_occurrences (c, s) n_occurrences (c, s)
char c; int c;
char *s; char *s;
{ {
int n = 0; int n = 0;
......
...@@ -1897,7 +1897,7 @@ operands_match_p (x, y) ...@@ -1897,7 +1897,7 @@ operands_match_p (x, y)
int int
n_occurrences (c, s) n_occurrences (c, s)
char c; int c;
char *s; char *s;
{ {
int n = 0; int n = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment