Skip to content

Commit

Permalink
Merge branch 'workshop' of https://github.com/MrKepzie/Natron into wo…
Browse files Browse the repository at this point in the history
…rkshop
  • Loading branch information
MrKepzie committed Jun 26, 2014
2 parents 734d894 + f2ddbb3 commit 027f6f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gui/NodeGui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ void NodeGui::computePreviewImage(int time){
#ifndef __NATRON_WIN32__
unsigned int* buf = (unsigned int*)calloc(dataSize,1);
#else
unsigned int* buf = (unsigned int*)malloc(dataSize,1);
unsigned int* buf = (unsigned int*)malloc(dataSize);
for (int i = 0; i < w*h ;++i) {
buf[i] = qRgba(0,0,0,255);
}
Expand Down

0 comments on commit 027f6f2

Please sign in to comment.