aboutsummaryrefslogtreecommitdiff
path: root/tcccoff.c
diff options
context:
space:
mode:
Diffstat (limited to 'tcccoff.c')
-rw-r--r--tcccoff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tcccoff.c b/tcccoff.c
index 2f52562..76262a1 100644
--- a/tcccoff.c
+++ b/tcccoff.c
@@ -858,7 +858,7 @@ Section *FindSection(TCCState * s1, const char *sname)
return 0;
}
-ST_FUNC int tcc_load_coff(TCCState * s1, int fd)
+ST_FUNC int tcc_load_coff(TCCState * s1, vio_fd fd)
{
// tktk TokenSym *ts;
@@ -870,7 +870,7 @@ ST_FUNC int tcc_load_coff(TCCState * s1, int fd)
char name2[9];
FILHDR file_hdr; /* FILE HEADER STRUCTURE */
- f = fdopen(fd, "rb");
+ f = fdopen(fd.fd, "rb");
if (!f) {
tcc_error("Unable to open .out file for input");
}