91761da ShellPkg/UefiShellDriver1CommandsLib: fix parameter list typo

Authored and Committed by lersek 4 years ago
    ShellPkg/UefiShellDriver1CommandsLib: fix parameter list typo
    
    The ShellCommandRunConnect() function passes EFI_HANDLE -- (VOID*) --
    objects to ConvertAndConnectControllers(), and
    ConvertAndConnectControllers() passes those to gBS->OpenProtocol().
    
    Accordingly, ConvertAndConnectControllers() should specify EFI_HANDLE
    parameter types, not (EFI_HANDLE*) -- (VOID**) -- types.
    
    This typo is masked because (VOID*) converts to and from any
    pointer-to-object type silently.
    
    Note that functionally speaking there is no problem, so this patch does
    not change beavior, only cleans up the code.
    
    Cc: Jaben Carsey <jaben.carsey@intel.com>
    Cc: Ray Ni <ray.ni@intel.com>
    Cc: Zhichao Gao <zhichao.gao@intel.com>
    Signed-off-by: Laszlo Ersek <lersek@redhat.com>