Fixed exit status in some cases.

This commit is contained in:
Jeremy White 2002-04-06 00:38:33 +00:00 committed by Alexandre Julliard
parent 8a32613886
commit a5e9bf7321
1 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ void ListUninstallPrograms(void)
int i;
if (! FetchUninstallInformation())
exit(1);
return;
for (i=0; i < numentries; i++)
printf("%s|||%s\n", entries[i].key, entries[i].descr);
@ -107,7 +107,7 @@ void RemoveSpecificProgram(char *name)
int i;
if (! FetchUninstallInformation())
exit(1);
return;
for (i=0; i < numentries; i++)
{