diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-24 20:47:09 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-24 20:47:09 +0000 |
commit | 2e2fa61b8b0d8b6ca2dbbd128d3661ba81c68e2b (patch) | |
tree | 29ff2431cf828064114604b0a268978b84cd6b2b /libgo | |
parent | 0bc2f2d3c3e5817409131cfa761b8ae8e1f65db5 (diff) | |
download | gcc-2e2fa61b8b0d8b6ca2dbbd128d3661ba81c68e2b.tar.gz |
runtime: Correct definition of __go_file_line to match declaration.
From Rainer Orth.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@187851 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/runtime/go-caller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/runtime/go-caller.c b/libgo/runtime/go-caller.c index dda396054c3..b99d20c225f 100644 --- a/libgo/runtime/go-caller.c +++ b/libgo/runtime/go-caller.c @@ -48,7 +48,7 @@ RegisterDebugLookup (infofn_type pi, symvalfn_type ps) /* Return function/file/line information for PC. */ _Bool -__go_file_line (uintptr_t pc, struct __go_string *fn, struct __go_string *file, +__go_file_line (uintptr pc, struct __go_string *fn, struct __go_string *file, int *line) { if (infofn == NULL) |