From f59a68d66ea19de83b5fd6428bf7ed2d29b96e3e Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sun, 29 Jul 2012 15:49:29 +0000 Subject: [PATCH] [SPEC2DEF] Fix use of uninitialized variable warning svn path=/trunk/; revision=56982 --- reactos/tools/spec2def/spec2def.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/spec2def/spec2def.c b/reactos/tools/spec2def/spec2def.c index e9ef4071131..e6433acab6b 100644 --- a/reactos/tools/spec2def/spec2def.c +++ b/reactos/tools/spec2def/spec2def.c @@ -705,7 +705,7 @@ int main(int argc, char *argv[]) char *pszSource, *pszDefFileName = 0, *pszStubFileName = 0, *pszLibStubName = 0; char achDllName[40]; FILE *file; - int result, i; + int result = 0, i; if (argc < 2) {