Skip to content

Commit

Permalink
Fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Jan 27, 2012
1 parent 9c76d0d commit f925275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test-fs.c
Original file line number Diff line number Diff line change
Expand Up @@ -453,10 +453,10 @@ TEST_IMPL(fs_file_noent) {
TEST_IMPL(fs_file_nametoolong) {
uv_fs_t req;
int r;
char name[TOO_LONG_NAME_LENGTH + 1];

loop = uv_default_loop();

char name[TOO_LONG_NAME_LENGTH + 1];
memset(name, 'a', TOO_LONG_NAME_LENGTH);
name[TOO_LONG_NAME_LENGTH] = 0;

Expand Down

0 comments on commit f925275

Please sign in to comment.