changed to avoid a compiler warning

This commit is contained in:
Davis King 2011-09-09 21:22:07 -04:00
parent 73a34f7fd4
commit 748ec4cb91
1 changed files with 3 additions and 3 deletions

View File

@ -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);