Changed some spaces and indentations

This commit is contained in:
Mark Pizzolato 2013-05-29 12:48:19 -07:00
parent 3e25042017
commit 39c794292d
2 changed files with 25 additions and 24 deletions

View file

@ -2110,6 +2110,7 @@ return;
t_bool aprid (a10 ea, int32 prv) t_bool aprid (a10 ea, int32 prv)
{ {
d10 value = (Q_ITS)? UC_AIDITS: UC_AIDDEC; d10 value = (Q_ITS)? UC_AIDITS: UC_AIDDEC;
if( (apr_serial == -1) || (!Q_ITS && apr_serial < 4096) ) if( (apr_serial == -1) || (!Q_ITS && apr_serial < 4096) )
value |= (Q_ITS)? UC_SERITS: UC_SERDEC; value |= (Q_ITS)? UC_SERITS: UC_SERDEC;
else else

View file

@ -661,7 +661,7 @@ t_stat reason;
reason = attach_unit (uptr, cptr); /* attach file */ reason = attach_unit (uptr, cptr); /* attach file */
if (reason == SCPE_OK) { if (reason == SCPE_OK) {
sim_fseek (uptr->fileref, 0, SEEK_END); sim_fseek (uptr->fileref, 0, SEEK_END);
uptr->pos = ftell (uptr->fileref); uptr->pos = sim_ftell (uptr->fileref);
} }
if (lpcsa & CSA_ONL) /* just file chg? */ if (lpcsa & CSA_ONL) /* just file chg? */
return reason; return reason;