mirror of
https://github.com/reactos/reactos.git
synced 2025-04-28 09:29:07 +00:00
[SPEC2DEF]
Fix use of uninitialized variable warning svn path=/trunk/; revision=56982
This commit is contained in:
parent
f8b87477ce
commit
f59a68d66e
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue