Remove pointless local variable.
[cparser] / parsetest / cp_error046.c
1 static const struct {
2         unsigned int width;
3         unsigned int height;
4         unsigned int bytes_per_pixel;
5         unsigned char pixel_data[1 * 1 * 4 + 1];
6 } ICON = {
7         1, 1, 4, "\0\0\0\0\0"
8 };
9
10 int main(void)
11 {
12         return ICON.width - 1;
13 }