From fe4af53ff049f8b70adf4019705a1515494e18f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Mon, 24 Mar 2014 22:20:52 +0000 Subject: [PATCH] [EXT2] try_return() == try_return(S) with nothing in S . The code sometimes use it. Shut up MSVC warning C4003: not enough actual parameters for macro 'try_return'. svn path=/trunk/; revision=62562 --- reactos/drivers/filesystems/ext2/inc/ext2fsd.h | 1 + 1 file changed, 1 insertion(+) diff --git a/reactos/drivers/filesystems/ext2/inc/ext2fsd.h b/reactos/drivers/filesystems/ext2/inc/ext2fsd.h index dcf35d996ef..1c61f4f3224 100644 --- a/reactos/drivers/filesystems/ext2/inc/ext2fsd.h +++ b/reactos/drivers/filesystems/ext2/inc/ext2fsd.h @@ -60,6 +60,7 @@ typedef unsigned char BYTE; extern Ext2Data Ext2GlobalData; // try-finally simulation +#define try_return() { goto try_exit; } #define try_return(S) { S; goto try_exit; } #define try_return1(S) { S; goto try_exit1; } #define try_return2(S) { S; goto try_exit2; }