Skip to content

Commit

Permalink
minor variable rename
Browse files Browse the repository at this point in the history
  • Loading branch information
stavroskasidis committed Apr 4, 2022
1 parent 13c41eb commit adcbfc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BlazorWasmAntivirusProtection.Tasks/CleanOldDlls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ bool IsDllHeaderMz(string fn)
var buffer = new byte[2];
reader.Read(buffer, 0 , buffer.Length);

var bz = Encoding.ASCII.GetBytes("MZ");
return bz[0] == buffer[0] && bz[1] == buffer[1];
var mz = Encoding.ASCII.GetBytes("MZ");
return mz[0] == buffer[0] && mz[1] == buffer[1];
}
}
}

0 comments on commit adcbfc5

Please sign in to comment.