We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30172ef commit 6a70246Copy full SHA for 6a70246
1 file changed
LibIPS.NET/Creator.cs
@@ -59,7 +59,7 @@ public void Create(string source, string target, string patch)
59
/// <returns></returns>
60
public void Create(FileStream source, FileStream target, FileStream patch)
61
{
62
- Create(source, target, patch);
+ Create((Stream)source, (Stream)target, (Stream)patch);
63
}
64
/// <summary>
65
/// Creates an IPS patch stream from a source stream and a target stream.
0 commit comments