Parameter adjustment.

This commit is contained in:
2017-07-25 15:03:28 +01:00
parent 08aca746ef
commit d3bc3086bf
3 changed files with 3 additions and 3 deletions

View File

@@ -91,7 +91,7 @@ namespace DiscImageChef.Tests.Filesystems
int part = -1; int part = -1;
for(int j = 0; j < partitions.Count; j++) for(int j = 0; j < partitions.Count; j++)
{ {
if(partitions[j].Type == "0x80" || partitions[j].Type == "0x81") if(partitions[j].Type == "0x80" || partitions[j].Type == "0x81" || partitions[j].Type == "MINIX")
{ {
part = j; part = j;
break; break;

View File

@@ -91,7 +91,7 @@ namespace DiscImageChef.Tests.Filesystems
int part = -1; int part = -1;
for(int j = 0; j < partitions.Count; j++) for(int j = 0; j < partitions.Count; j++)
{ {
if(partitions[j].Type == "0x81") if(partitions[j].Type == "0x81" || partitions[j].Type == "MINIX")
{ {
part = j; part = j;
break; break;

View File

@@ -91,7 +91,7 @@ namespace DiscImageChef.Tests.Filesystems
int part = -1; int part = -1;
for(int j = 0; j < partitions.Count; j++) for(int j = 0; j < partitions.Count; j++)
{ {
if(partitions[j].Type == "0x81") if(partitions[j].Type == "0x81" || partitions[j].Type == "MINIX")
{ {
part = j; part = j;
break; break;