Skip to content

Commit

Permalink
fix for "variable length array folded to constant array as an extensi…
Browse files Browse the repository at this point in the history
…on" error
  • Loading branch information
winglian authored and dormando committed Dec 9, 2013
1 parent 032d1f1 commit cd3ffe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testapp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1807,7 +1807,7 @@ static enum test_return test_binary_pipeline_hickup(void)


static enum test_return test_issue_101(void) {
const int max = 2;
enum { max = 2 };
enum test_return ret = TEST_PASS;
int fds[max];
int ii = 0;
Expand Down

0 comments on commit cd3ffe8

Please sign in to comment.