[BACK]Return to ctfdump.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ctfdump

Diff for /src/usr.bin/ctfdump/ctfdump.c between version 1.14 and 1.15

version 1.14, 2017/10/27 09:35:22 version 1.15, 2017/10/28 08:22:28
Line 296 
Line 296 
   
         if (flags & DUMP_HEADER) {          if (flags & DUMP_HEADER) {
                 printf("  cth_magic    = 0x%04x\n", cth->cth_magic);                  printf("  cth_magic    = 0x%04x\n", cth->cth_magic);
                 printf("  cth_version  = %d\n", cth->cth_version);                  printf("  cth_version  = %u\n", cth->cth_version);
                 printf("  cth_flags    = 0x%02x\n", cth->cth_flags);                  printf("  cth_flags    = 0x%02x\n", cth->cth_flags);
                 printf("  cth_parlabel = %s\n",                  printf("  cth_parlabel = %s\n",
                     ctf_off2name(cth, data, dlen, cth->cth_parlabel));                      ctf_off2name(cth, data, dlen, cth->cth_parlabel));
                 printf("  cth_parname  = %s\n",                  printf("  cth_parname  = %s\n",
                     ctf_off2name(cth, data, dlen, cth->cth_parname));                      ctf_off2name(cth, data, dlen, cth->cth_parname));
                 printf("  cth_lbloff   = %d\n", cth->cth_lbloff);                  printf("  cth_lbloff   = %u\n", cth->cth_lbloff);
                 printf("  cth_objtoff  = %d\n", cth->cth_objtoff);                  printf("  cth_objtoff  = %u\n", cth->cth_objtoff);
                 printf("  cth_funcoff  = %d\n", cth->cth_funcoff);                  printf("  cth_funcoff  = %u\n", cth->cth_funcoff);
                 printf("  cth_typeoff  = %d\n", cth->cth_typeoff);                  printf("  cth_typeoff  = %u\n", cth->cth_typeoff);
                 printf("  cth_stroff   = %d\n", cth->cth_stroff);                  printf("  cth_stroff   = %u\n", cth->cth_stroff);
                 printf("  cth_strlen   = %d\n", cth->cth_strlen);                  printf("  cth_strlen   = %u\n", cth->cth_strlen);
                 printf("\n");                  printf("\n");
         }          }
   

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15