On 30/11/12 20:14, Programmingkid wrote:What do you mean when you say something is whitespace damaged?
It's a general term for formatting changes that don't affect the patch, e.g.
for (i = 0; i <= 10; i++) {
to
for (i = 0; i <= 10; i++)
{
It means that the patch includes non-functional changes which is generally frowned upon.What section do I not need? Could you give me the first and last line of this section? I need the actual text since the line number will probably not help if our files are different.
See below.- } else {- /* Another partition was explicitly requested */+ }++ // if no partition and no file was selected - example: "dir cd:,\"+ else if (parnum == -1)+ {+ // search for the first partition of type Apple_HFS or Apple_HFSX+ for(parnum = 1; parnum<= __be32_to_cpu(par.pmMapBlkCnt); parnum++)+ {+ SEEK( bs * parnum );+ READ(&par, sizeof(par) );+ DPRINTF("found partition type: %s with status %x\n", par.pmPartType, __be32_to_cpu(par.pmPartStatus));+ if(strcmp(par.pmPartType, "Apple_HFS") == 0 || strcmp(par.pmPartType, "Apple_HFSX") == 0)+ {+ offs = (long long)__be32_to_cpu(par.pmPyPartStart) * bs;+ size = (long long)__be32_to_cpu(par.pmPartBlkCnt) * bs;+ goto found;+ break;+ }+ }+ }++ // Another partition was explicitly requested+ else+ {+
ATB,
Mark.