diff options
| -rw-r--r-- | sys/dev/ti/if_ti.c | 2 | ||||
| -rw-r--r-- | sys/pci/if_ti.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c index b91f5cb2daaf..fdaebf0351fa 100644 --- a/sys/dev/ti/if_ti.c +++ b/sys/dev/ti/if_ti.c @@ -796,7 +796,7 @@ ti_bcopy_swap(src, dst, len, swap_type) size_t tmplen; if (len & 0x3) { - printf("ti_bcopy_swap: length %d isn't 32-bit aligned\n", + printf("ti_bcopy_swap: length %zd isn't 32-bit aligned\n", len); return(-1); } diff --git a/sys/pci/if_ti.c b/sys/pci/if_ti.c index b91f5cb2daaf..fdaebf0351fa 100644 --- a/sys/pci/if_ti.c +++ b/sys/pci/if_ti.c @@ -796,7 +796,7 @@ ti_bcopy_swap(src, dst, len, swap_type) size_t tmplen; if (len & 0x3) { - printf("ti_bcopy_swap: length %d isn't 32-bit aligned\n", + printf("ti_bcopy_swap: length %zd isn't 32-bit aligned\n", len); return(-1); } |
