summaryrefslogtreecommitdiff
path: root/gcc/cpperror.c
diff options
context:
space:
mode:
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2000-11-17 19:21:15 +0000
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2000-11-17 19:21:15 +0000
commit97d11f45c5168317fd889e78fe8976bde2dbb64c (patch)
tree7d972c08baf3dd78cd8b3e5b32534d4fdca36eaa /gcc/cpperror.c
parentec6cb94af9fcfa7d281b5234ad5e1c31000c10f3 (diff)
downloadgcc-97d11f45c5168317fd889e78fe8976bde2dbb64c.tar.gz
* cpperror.c (print_file_and_line): Don't display line number
if 0. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37523 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpperror.c')
-rw-r--r--gcc/cpperror.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/cpperror.c b/gcc/cpperror.c
index d598fbd78a4..ff83c6fb87b 100644
--- a/gcc/cpperror.c
+++ b/gcc/cpperror.c
@@ -86,19 +86,19 @@ print_containing_files (pfile, ip)
}
static void
-print_file_and_line (filename, line, column)
+print_file_and_line (filename, line, col)
const char *filename;
- unsigned int line, column;
+ unsigned int line, col;
{
if (filename == 0 || *filename == '\0')
filename = "<stdin>";
- if (line == (unsigned int)-1)
+ if (line == 0)
fprintf (stderr, "%s: ", filename);
- else if (column > 0)
- fprintf (stderr, "%s:%u:%u: ", filename, line, column);
- else
+ else if (col == 0)
fprintf (stderr, "%s:%u: ", filename, line);
+ else
+ fprintf (stderr, "%s:%u:%u: ", filename, line, col);
}
/* Set up for an error message: print the file and line, bump the error