diff options
author | Ken Raeburn <raeburn@cygnus> | 1992-08-19 14:42:21 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1992-08-19 14:42:21 +0000 |
commit | 09952cd9552ace00ab7183be9b3cc5f120a9df5a (patch) | |
tree | 594b05abc902baadc6626804b621e124acb67625 /gas/messages.c | |
parent | 305c1e74c3a093d2b8d74918dff5ad753602e435 (diff) | |
download | gdb-09952cd9552ace00ab7183be9b3cc5f120a9df5a.zip gdb-09952cd9552ace00ab7183be9b3cc5f120a9df5a.tar.gz gdb-09952cd9552ace00ab7183be9b3cc5f120a9df5a.tar.bz2 |
mainly link-relax changes
Diffstat (limited to 'gas/messages.c')
-rw-r--r-- | gas/messages.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/messages.c b/gas/messages.c index f8286b8..b48df098 100644 --- a/gas/messages.c +++ b/gas/messages.c @@ -92,7 +92,7 @@ */ -static int warning_count = 0; /* Count of number of warnings issued */ +static int warning_count; /* Count of number of warnings issued */ int had_warnings() { return(warning_count); @@ -101,7 +101,7 @@ int had_warnings() { /* Nonzero if we've hit a 'bad error', and should not write an obj file, and exit with a nonzero error code */ -static int error_count = 0; +static int error_count; int had_errors() { return(error_count); @@ -177,7 +177,7 @@ char *Format; /* * a s _ w a r n () * - * Send to stderr a string (with bell) (JF: Bell is obnoxious!) as a warning, and locate warning + * Send to stderr a string as a warning, and locate warning * in input file(s). * Please only use this for when we have some recovery action. * Please explain in string (which may have '\n's) what recovery was done. |