1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/src/util/io/TeeOutputStream.cs b/crypto/src/util/io/TeeOutputStream.cs
index a6c7fd5b5..5f447b18b 100644
--- a/crypto/src/util/io/TeeOutputStream.cs
+++ b/crypto/src/util/io/TeeOutputStream.cs
@@ -43,10 +43,10 @@ namespace Org.BouncyCastle.Utilities.IO
tee.Write(buffer, offset, count);
}
- public override void WriteByte(byte b)
+ public override void WriteByte(byte value)
{
- output.WriteByte(b);
- tee.WriteByte(b);
+ output.WriteByte(value);
+ tee.WriteByte(value);
}
}
}
|