Properly fix warnings on MSVC, introduced in r38302.
"- 'allowwarnings=true' -- not anymore", they said.
Advice by ThFabba.

svn path=/trunk/; revision=64790
This commit is contained in:
Sylvain Petreolle 2014-10-17 19:27:29 +00:00
parent df36f5a015
commit cab7763783

View file

@ -60,7 +60,7 @@ typedef unsigned char BYTE;
extern Ext2Data Ext2GlobalData;
// try-finally simulation
#define try_return(S) { S; goto try_exit; }
#define try_return(...) { __VA_ARGS__; goto try_exit; }
#define try_return1(S) { S; goto try_exit1; }
#define try_return2(S) { S; goto try_exit2; }