Skip to content

Commit

Permalink
Fix compilation with latest VapoutSynth headers
Browse files Browse the repository at this point in the history
propSetNode how expects a non-const pointer to a VSNodeRef, as
of r308.

Signed-off-by: Derek Buitenhuis <[email protected]>
  • Loading branch information
dwbuiten committed Nov 9, 2012
1 parent a2e499a commit 84344f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vs/d2vsource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ static void VS_CC d2vFree(void *instanceData, VSCore *core, const VSAPI *vsapi)
static void VS_CC d2vCreate(const VSMap *in, VSMap *out, void *userData, VSCore *core, const VSAPI *vsapi) {
d2vData d;
d2vData *data;
const VSNodeRef *cref;
VSNodeRef *cref;
string msg;
int err;

Expand Down

0 comments on commit 84344f0

Please sign in to comment.