From f7330bc09dfc6d14875abb163886da18da4ddaf2 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sun, 2 Jun 2013 17:07:21 -0700 Subject: [PATCH] remote compiler warning --- PDP10/pdp10_lp20.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PDP10/pdp10_lp20.c b/PDP10/pdp10_lp20.c index d8122f01..9d6e2a96 100644 --- a/PDP10/pdp10_lp20.c +++ b/PDP10/pdp10_lp20.c @@ -661,7 +661,7 @@ t_stat reason; reason = attach_unit (uptr, cptr); /* attach file */ if (reason == SCPE_OK) { sim_fseek (uptr->fileref, 0, SEEK_END); - uptr->pos = sim_ftell (uptr->fileref); + uptr->pos = (t_addr)sim_ftell (uptr->fileref); } if (lpcsa & CSA_ONL) /* just file chg? */ return reason;