From 5089d4a559eb3a0a0f008ad00ba8c5ed8bbc94c6 Mon Sep 17 00:00:00 2001 From: Flavio Cruz Date: Tue, 29 Dec 2015 23:15:01 +0100 Subject: fix compiler warnings in hurd/utils utils: Fix compiler warnings. * utils/rpcscan.c (setup_extract_target): Remove name variable. * utils/rpcscan.c (setup_extract_target): Fix bad initializer. * utils/rpctrace.c (new_send_wrapper, wrap_all_threads, wrap_new_thread, wrap_new_task, traced_spawn): Fix format strings. * utils/rpctrace.c (trace_and_forward): Cast to unsigned int. * utils/rpctrace.c (trace_and_forward): Use memcmp instead of pointer dereferencing to compare structures. * utils/rpctrace.c (wrap_all_threads): Cast to vm_address_t. * utils/rpctrace.c (main): Fix bad initializer. * utils/shd.c (run): Initialize save0. * utils/vminfo.c: Fix format strings. * utils/vmstat.c: Remove PSEP macro and expand the code. * utils/w.c (add_utmp_procs): Remove unused pos variable. --- utils/shd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'utils/shd.c') diff --git a/utils/shd.c b/utils/shd.c index a1a4b26b..feff6135 100644 --- a/utils/shd.c +++ b/utils/shd.c @@ -106,7 +106,8 @@ run (char **argv, int fd0, int fd1) } else { - int save0, save1; + int save0 = -1; + int save1; inline int movefd (int from, int to, int *save) { -- cgit v1.2.3