win32_io.c: fix variable name

This fixes a compiler error only manifesting in debug mode.
pull/106/head
CodingKoopa 2024-03-08 19:07:49 -05:00
parent 11543cd632
commit 1a3def37c5
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ static int ntfs_w32error_to_errno(unsigned int w32error)
static int ntfs_ntstatus_to_errno(NTSTATUS status)
{
ntfs_log_trace("Converting w32error 0x%x.\n",w32error);
ntfs_log_trace("Converting w32error 0x%x.\n",status);
switch (status) {
case STATUS_INVALID_HANDLE :
case STATUS_INVALID_PARAMETER :