* read.c (read_a_source_file): The second argument to as_where is

unsigned int *, not int *.
This commit is contained in:
Ian Lance Taylor
1994-10-17 22:07:16 +00:00
parent eb4267a3f9
commit f10a96cbec
2 changed files with 17 additions and 4 deletions

View File

@@ -549,17 +549,17 @@ read_a_source_file (name)
#ifdef OBJ_GENERATE_ASM_LINENO
if (generate_asm_lineno == 0)
{
if (ecoff_no_current_file())
if (ecoff_no_current_file ())
generate_asm_lineno = 1;
}
else
{
if (generate_asm_lineno == 1)
{
unsigned int lineno;
char *s;
as_where (&s, &lineno);
OBJ_GENERATE_ASM_LINENO (s, lineno);
}
}
#endif
md_assemble (s); /* Assemble 1 instruction. */