summaryrefslogtreecommitdiff
path: root/hostname.c
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2016-12-26 10:16:35 +0000
committerDmitry V. Levin <ldv@altlinux.org>2016-12-26 10:43:34 +0000
commit89636759d781eb506c6c96a2d72fb8f28ca7e297 (patch)
treef255c958a0154ee261dd3128cc6c0d41a176652c /hostname.c
parent7fa3d78319b20a996923f9b665afc3a3571ed08b (diff)
downloadstrace-89636759d781eb506c6c96a2d72fb8f28ca7e297.tar.gz
Automatically replace PRI_kr[dux] with PRI_kl[dux]
Remove temporary macros created for transition from long to kernel_ulong_t. Automatically replace PRI_kr[dux] with PRI_kl[dux] using $ git grep -l 'PRI_kr[dux]' | xargs sed -ri 's/PRI_kr([dux])/PRI_kl\1/g' * defs.h (PRI_krd, PRI_kru, PRI_krx): Remove. All users updated.
Diffstat (limited to 'hostname.c')
-rw-r--r--hostname.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hostname.c b/hostname.c
index f852faa48..75f96ba69 100644
--- a/hostname.c
+++ b/hostname.c
@@ -31,7 +31,7 @@ SYS_FUNC(gethostname)
printaddr(tcp->u_arg[0]);
else
printstr(tcp, tcp->u_arg[0]);
- tprintf(", %" PRI_kru, tcp->u_arg[1]);
+ tprintf(", %" PRI_klu, tcp->u_arg[1]);
}
return 0;
}