From 1c927ca023d1ba65601789109776d9304af295e6 Mon Sep 17 00:00:00 2001 From: neil Date: Mon, 14 Mar 2016 18:20:27 +0000 Subject: [PATCH] Changed ExamineFH() argument names in its source file to match those in dos.conf. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@51946 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- rom/dos/examinefh.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/rom/dos/examinefh.c b/rom/dos/examinefh.c index 57dcb1bc8e..9c736f497d 100644 --- a/rom/dos/examinefh.c +++ b/rom/dos/examinefh.c @@ -1,5 +1,5 @@ /* - Copyright © 1995-2013, The AROS Development Team. All rights reserved. + Copyright © 1995-2016, The AROS Development Team. All rights reserved. $Id$ Desc: dos.library function ExamineFH(). @@ -20,7 +20,7 @@ AROS_LH2(BOOL, ExamineFH, /* SYNOPSIS */ - AROS_LHA(BPTR, lock, D1), + AROS_LHA(BPTR, fh, D1), AROS_LHA(struct FileInfoBlock *, fib, D2), /* LOCATION */ @@ -47,11 +47,12 @@ AROS_LIBFUNC_INIT /* Get pointer to filehandle */ - struct FileHandle *fh = BADDR(lock); + struct FileHandle *handle = BADDR(fh); BOOL ret; - D(bug("[ExamineFH] fh=%x fib=%x\n", fh, fib)); - ret = dopacket2(DOSBase, NULL, fh->fh_Type, ACTION_EXAMINE_FH, fh->fh_Arg1, MKBADDR(fib)); + D(bug("[ExamineFH] handle=%x fib=%x\n", handle, fib)); + ret = dopacket2(DOSBase, NULL, handle->fh_Type, ACTION_EXAMINE_FH, + handle->fh_Arg1, MKBADDR(fib)); if (ret) { fixfib(fib); D(bug("[ExamineFH] '%s'\n", fib->fib_FileName)); -- 2.11.4.GIT