Changeset 504a5822 in rtems


Ignore:
Timestamp:
03/07/17 13:53:15 (7 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
5, master
Children:
f82e9af7
Parents:
65b63b2
git-author:
Sebastian Huber <sebastian.huber@…> (03/07/17 13:53:15)
git-committer:
Sebastian Huber <sebastian.huber@…> (03/08/17 14:36:54)
Message:

bsps/umon: Fix format warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/shared/umon/tfsDriver.c

    r65b63b2 r504a5822  
    253253
    254254  if (RTEMS_TFS_DEBUG)
    255     printk("_open_r(%s,0x%" PRIx32 ",0x%" PRIx32 ")\n",path,oflag,mode);
     255    printk("_open_r(%s,0x%x,0x%" PRIx32 ")\n",path,oflag,mode);
    256256
    257257  if (!beenhere) {
     
    459459
    460460  if (RTEMS_TFS_DEBUG)
    461     printk("_read_r(%d,%" PRId32 ")\n",fd,count);
     461    printk("_read_r(%d,%zi)\n",fd,count);
    462462
    463463  if ((fd < 3) || (fd >= MAXTFDS))
     
    520520
    521521  if (RTEMS_TFS_DEBUG)
    522     printk("rtems_tfs_write(%d,%" PRId32" )\n",fd,count);
     522    printk("rtems_tfs_write(%d,%zi)\n",fd,count);
    523523
    524524  if ((fd <= 0) || (fd >= MAXTFDS)) {
Note: See TracChangeset for help on using the changeset viewer.