Changeset aa1724e7a975430c7b8b53359e94c225622f4957

Show
Ignore:
Timestamp:
10/30/09 21:05:48 (2 years ago)
Author:
Erwan Velu <erwan.velu@…>
Children:
6c28fd79cfb1c70185df7215540e564dd061058d
Parents:
a1d88954b2913bb6b992077accad6b23c6767abe
git-committer:
Erwan Velu <erwan.velu@free.fr> / 2009-10-30T22:05:48Z+0100
Message:

hdt: Fixing DMI version display

Impact: none

Version is unsigned, so using %u is prefered ;)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • com32/hdt/hdt-menu.c

    r47ac91 raa1724  
    310310        ("DMI: Many hardware components will not be detected ! \n"); 
    311311  } else { 
    312     printf("DMI: Table found ! (version %d.%d)\n", 
     312    printf("DMI: Table found ! (version %u.%u)\n", 
    313313           hardware->dmi.dmitable.major_version, 
    314314           hardware->dmi.dmitable.minor_version);