diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-09-23 22:57:56 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-10-01 08:55:18 -0700 |
commit | 225c45b3accab56fab361104a3d14b80f6cec954 (patch) | |
tree | d4b2770cb0558d68892acb38d326e14a9053de38 /Xtransutil.c | |
parent | b1b69ce8e8e4fe0f190c8bd85b537309e71055c8 (diff) |
Fix printf format string warnings
Now that prmsg lets arguments types actually be checked, fix
the warnings found.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'Xtransutil.c')
-rw-r--r-- | Xtransutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Xtransutil.c b/Xtransutil.c index d44dbe9..3cb01c5 100644 --- a/Xtransutil.c +++ b/Xtransutil.c @@ -91,7 +91,7 @@ TRANS(ConvertAddress)(int *familyp, int *addrlenp, Xtransaddr **addrp) { - prmsg(2,"ConvertAddress(%d,%d,%x)\n",*familyp,*addrlenp,*addrp); + prmsg(2,"ConvertAddress(%d,%d,%p)\n",*familyp,*addrlenp,*addrp); switch( *familyp ) { |