Skip to content

Commit 6a70246

Browse files
committed
Added casts.
1 parent 30172ef commit 6a70246

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

LibIPS.NET/Creator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void Create(string source, string target, string patch)
5959
/// <returns></returns>
6060
public void Create(FileStream source, FileStream target, FileStream patch)
6161
{
62-
Create(source, target, patch);
62+
Create((Stream)source, (Stream)target, (Stream)patch);
6363
}
6464
/// <summary>
6565
/// Creates an IPS patch stream from a source stream and a target stream.

0 commit comments

Comments
 (0)