deps: update to uvwasi 0.0.14 · nodejs/node@e73be1b · GitHub
Skip to content

Commit e73be1b

Browse files
cjihrigRafaelGSS
authored andcommitted
deps: update to uvwasi 0.0.14
Notable changes: - Windows applications not in ConsoleMode now properly guess handle types for FILE_TYPE_CHAR file types which cannot be stat'ed. - The UVWASI_DEBUG macro can now be used without a format string. - The libuv dependency has been updated to v1.44.2. PR-URL: #45970 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
1 parent 7ae24ab commit e73be1b

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

deps/uvwasi/include/uvwasi.h

Lines changed: 1 addition & 1 deletion

deps/uvwasi/src/debug.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# define __STDC_FORMAT_MACROS
77
#endif
88
# include <inttypes.h>
9-
# define UVWASI_DEBUG(fmt, ...) \
10-
do { fprintf(stderr, fmt, __VA_ARGS__); } while (0)
9+
# define UVWASI_DEBUG(...) \
10+
do { fprintf(stderr, __VA_ARGS__); } while (0)
1111
#else
1212
# define UVWASI_DEBUG(fmt, ...)
1313
#endif

deps/uvwasi/src/uv_mapping.c

Lines changed: 7 additions & 2 deletions

0 commit comments

Comments
 (0)