Skip to content

Commit

Permalink
Cosmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
tronkko committed May 13, 2023
1 parent b787477 commit c00ec6d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions tests/t-unicode.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ main(int argc, char *argv[])
/* Creation disposition */ CREATE_NEW,
/* Attributes */ FILE_ATTRIBUTE_NORMAL,
/* Template files */ NULL
);
);
assert(fh != INVALID_HANDLE_VALUE);

/* Write some data to file */
Expand All @@ -117,7 +117,7 @@ main(int argc, char *argv[])
/* Number of bytes to write */ 4,
/* Number of bytes written */ NULL,
/* Overlapped */ NULL
);
);
assert(ok);

/* Close file */
Expand Down Expand Up @@ -170,7 +170,7 @@ main(int argc, char *argv[])
/* Creation disposition */ OPEN_EXISTING,
/* Attributes */ FILE_ATTRIBUTE_NORMAL,
/* Template files */ NULL
);
);
assert(fh != INVALID_HANDLE_VALUE);

/* Read data from file */
Expand Down
4 changes: 2 additions & 2 deletions tests/t-utf8.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ main(int argc, char *argv[])
/* Creation disposition */ CREATE_NEW,
/* Attributes */ FILE_ATTRIBUTE_NORMAL,
/* Template files */ NULL
);
);
assert(fh != INVALID_HANDLE_VALUE);

/* Write some data to file */
Expand All @@ -103,7 +103,7 @@ main(int argc, char *argv[])
/* Number of bytes to write */ 4,
/* Number of bytes written */ NULL,
/* Overlapped */ NULL
);
);
assert(ok);

/* Close file */
Expand Down

0 comments on commit c00ec6d

Please sign in to comment.