mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 23:02:02 -04:00
The printf(9) `%p' conversion specifier puts an "0x" in
front of the pointer value. Therefore, remove the "0x" from the format string.
This commit is contained in:
parent
e7aabf96a4
commit
9c0c1ab87d
1 changed files with 2 additions and 2 deletions
|
|
@ -1153,7 +1153,7 @@ ntfs_ntreaddir(
|
|||
blsize = fp->f_dirblsz;
|
||||
rdbuf = fp->f_dirblbuf;
|
||||
|
||||
dprintf(("ntfs_ntreaddir: rdbuf: 0x%p, blsize: %d\n", rdbuf, blsize));
|
||||
dprintf(("ntfs_ntreaddir: rdbuf: %p, blsize: %d\n", rdbuf, blsize));
|
||||
|
||||
if (vap->va_a_iroot->ir_flag & NTFS_IRFLAG_INDXALLOC) {
|
||||
error = ntfs_ntvattrget(ntmp, ip, NTFS_A_INDXBITMAP, "$I30",
|
||||
|
|
@ -1921,7 +1921,7 @@ ntfs_runtocn(
|
|||
|
||||
#if NTFS_DEBUG
|
||||
int i;
|
||||
printf("ntfs_runtocn: run: 0x%p, %ld bytes, vcn:%ld\n",
|
||||
printf("ntfs_runtocn: run: %p, %ld bytes, vcn:%ld\n",
|
||||
run, len, (u_long) vcn);
|
||||
printf("ntfs_runtocn: run: ");
|
||||
for (i = 0; i < len; i++)
|
||||
|
|
|
|||
Loading…
Reference in a new issue