Skip to content

Commit 9aa152f

Browse files
jschick04NikTilton
authored andcommitted
Fixed variant type mismatch
1 parent 743df00 commit 9aa152f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/EventLogExpert.Eventing/Helpers/EventMethods.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ internal static partial class EventMethods
200200
case (int)EvtVariantType.Byte:
201201
return variant.UInt8;
202202
case (int)EvtVariantType.Int16:
203-
return variant.SByte;
203+
return variant.Short;
204204
case (int)EvtVariantType.UInt16:
205205
return variant.UShort;
206206
case (int)EvtVariantType.Int32:

0 commit comments

Comments
 (0)