From be597ba6257c70f522f3246772f88d4308a0e2a0 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Fri, 2 Nov 2012 12:00:28 +0000 Subject: [PATCH] unix: set req type to UV_FS --- src/unix/fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/fs.c b/src/unix/fs.c index f0bf81af..a11e99a2 100644 --- a/src/unix/fs.c +++ b/src/unix/fs.c @@ -46,7 +46,7 @@ #define INIT(type) \ do { \ - uv__req_init((loop), (req), UV_FS_ ## type); \ + uv__req_init((loop), (req), UV_FS); \ (req)->fs_type = UV_FS_ ## type; \ (req)->errorno = 0; \ (req)->result = 0; \