Commit cefd15ce by Per Bothner

Disable obnoxious warning message.

From-SVN: r5008
parent ec0ed4f7
......@@ -21,6 +21,7 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define HASH_SIZE 2503 /* a prime */
int hash_tab[HASH_SIZE];
int verbose = 0;
sstring linebuf;
......@@ -82,8 +83,9 @@ main (argc, argv)
if (!isalnum (*ptr))
{
fprintf (stderr, "%s: Can't handle this complex prototype: %s\n",
argv[0], linebuf.base);
if (verbose)
fprintf (stderr, "%s: Can't handle this complex prototype: %s\n",
argv[0], linebuf.base);
continue;
}
name_end = ptr+1;
......
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