Reacted on compiler warning

This commit is contained in:
Thomas Schmitt 2008-07-10 16:39:36 +00:00
parent ed03897759
commit eddb70823e
2 changed files with 9 additions and 6 deletions

View File

@ -12262,15 +12262,18 @@ return:
next_command:;
if(flag&2) {
ret= 1;
if(xorriso->argument_emulation==1)
ret= Xorriso_as_genisofs(xorriso, argc, argv, idx, 0);
else if(xorriso->argument_emulation==2)
ret= Xorriso_as_cdrskin(xorriso, argc, argv, idx, 0);
xorriso->argument_emulation= 0;
if(ret<=0)
goto eval_any_problems;
if((*idx)>=argc)
{ret= 1; goto ex;}
if(xorriso->argument_emulation>0) {
xorriso->argument_emulation= 0;
if(ret<=0)
goto eval_any_problems;
if((*idx)>=argc)
{ret= 1; goto ex;}
}
}
xorriso->prepended_wd= 0;

View File

@ -1 +1 @@
#define Xorriso_timestamP "2008.07.10.162809"
#define Xorriso_timestamP "2008.07.10.164015"