Commit 748ec4cb authored by Davis King's avatar Davis King

changed to avoid a compiler warning

parent 73a34f7f
......@@ -772,9 +772,9 @@ namespace
assign_all_pixels(img, 10);
int filter[3][3] = { 1,1,1,
1,1,1,
1,1,1};
int filter[3][3] = { {1,1,1},
{1,1,1},
{1,1,1}};
assign_all_pixels(img2,3);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment