Changeset 7e752b2 in mainline for uspace/drv/pciintel/pci.c


Ignore:
Timestamp:
2010-11-26T01:33:20Z (13 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bf61d3a
Parents:
202f57b
Message:
  • correct printf() formatting strings and corresponding arguments
  • minor cstyle changes and other small fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/pciintel/pci.c

    r202f57b r7e752b2  
    323323        if (range_addr != 0) {
    324324                printf(NAME ": device %s : ", dev->name);
    325                 printf("address = %x", range_addr);
     325                printf("address = %" PRIx64, range_addr);
    326326                printf(", size = %x\n", range_size);
    327327        }
     
    479479        }       
    480480       
    481         printf(NAME ": conf_addr = %x.\n",
     481        printf(NAME ": conf_addr = %" PRIx64 ".\n",
    482482            hw_resources.resources[0].res.io_range.address);
    483483       
Note: See TracChangeset for help on using the changeset viewer.