aboutsummaryrefslogtreecommitdiff
path: root/gas/read.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1994-09-12 21:52:43 +0000
committerIan Lance Taylor <ian@airs.com>1994-09-12 21:52:43 +0000
commit1b434ced730b92336e2602505b85985b93507f79 (patch)
tree6713c74df5f8b401b665d44d4459cd20f5a15b0b /gas/read.c
parent2fd87dbc906958d2a267fdab6ff5e751d3f285d0 (diff)
downloadgdb-1b434ced730b92336e2602505b85985b93507f79.zip
gdb-1b434ced730b92336e2602505b85985b93507f79.tar.gz
gdb-1b434ced730b92336e2602505b85985b93507f79.tar.bz2
* read.c (read_a_source_file): The second argument to as_where is
unsigned int *, not int *.
Diffstat (limited to 'gas/read.c')
-rw-r--r--gas/read.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gas/read.c b/gas/read.c
index de45590..d85efe8 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -554,8 +554,9 @@ read_a_source_file (name)
}
else
{
- int lineno;
- char *s;
+ unsigned int lineno;
+ char *s;
+
as_where (&s, &lineno);
OBJ_GENERATE_ASM_LINENO (s, lineno);
}