[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[hurd] 46/75: fix compiler warnings in hurd/libshouldbeinlibc
From: |
Samuel Thibault |
Subject: |
[hurd] 46/75: fix compiler warnings in hurd/libshouldbeinlibc |
Date: |
Thu, 14 Jan 2016 01:04:09 +0000 |
This is an automated email from the git hooks/post-receive script.
sthibault pushed a commit to branch dde
in repository hurd.
commit adeeb9990e6302482b38267fd517a2516d5b9e2a
Author: Flavio Cruz <address@hidden>
Date: Tue Dec 29 22:48:16 2015 +0100
fix compiler warnings in hurd/libshouldbeinlibc
---
libshouldbeinlibc/portinfo.c | 8 ++++----
libshouldbeinlibc/ugids-verify-auth.c | 5 +++--
libshouldbeinlibc/xportinfo.c | 2 +-
3 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/libshouldbeinlibc/portinfo.c b/libshouldbeinlibc/portinfo.c
index e6305c6..f3c540f 100644
--- a/libshouldbeinlibc/portinfo.c
+++ b/libshouldbeinlibc/portinfo.c
@@ -53,7 +53,7 @@ print_port_info (mach_port_t name, mach_port_type_t type,
task_t task,
return err;
}
- fprintf (stream, hex_names ? "%#6zx: " : "%6zd: ", name);
+ fprintf (stream, hex_names ? "%#6lx: " : "%6lu: ", name);
if (type & MACH_PORT_TYPE_RECEIVE)
{
@@ -68,7 +68,7 @@ print_port_info (mach_port_t name, mach_port_type_t type,
task_t task,
fprintf (stream, " (");
if (status.mps_pset != MACH_PORT_NULL)
fprintf (stream,
- hex_names ? "port-set: %#zx, " : "port-set: %zd, ",
+ hex_names ? "port-set: %#lx, " : "port-set: %lu, ",
status.mps_pset);
fprintf (stream, "seqno: %zu", status.mps_seqno);
if (status.mps_mscount)
@@ -119,9 +119,9 @@ print_port_info (mach_port_t name, mach_port_type_t type,
task_t task,
fprintf (stream, " (empty)");
else
{
- fprintf (stream, hex_names ? " (%#zx" : " (%zu", members[0]);
+ fprintf (stream, hex_names ? " (%#lx" : " (%lu", members[0]);
for (i = 1; i < members_len; i++)
- fprintf (stream, hex_names ? ", %#zx" : ", %zu",
+ fprintf (stream, hex_names ? ", %#lx" : ", %lu",
members[i]);
fprintf (stream, ")");
munmap ((caddr_t) members, members_len * sizeof *members);
diff --git a/libshouldbeinlibc/ugids-verify-auth.c
b/libshouldbeinlibc/ugids-verify-auth.c
index 0e85b1b..f6991aa 100644
--- a/libshouldbeinlibc/ugids-verify-auth.c
+++ b/libshouldbeinlibc/ugids-verify-auth.c
@@ -65,9 +65,10 @@ server_verify_make_auth (const char *password,
{
auth_t auth;
struct svma_state *svma_state = hook;
- error_t (*check) (io_t server, uid_t id, const char *passwd, auth_t *auth) =
+ /* Mig routines don't use 'const' for passwd. */
+ error_t (*check) (io_t server, uid_t id, char *passwd, auth_t *auth) =
is_group ? password_check_group : password_check_user;
- error_t err = (*check) (svma_state->server, id, password, &auth);
+ error_t err = (*check) (svma_state->server, id, (char *) password, &auth);
if (! err)
/* PASSWORD checked out ok; the corresponding authentication is in AUTH. */
diff --git a/libshouldbeinlibc/xportinfo.c b/libshouldbeinlibc/xportinfo.c
index cce6fb6..47e6dd9 100644
--- a/libshouldbeinlibc/xportinfo.c
+++ b/libshouldbeinlibc/xportinfo.c
@@ -35,7 +35,7 @@ print_xlated_port_info (mach_port_t name, mach_port_type_t
type,
error_t err = port_name_xlator_xlate (x, name, type, &name, &type);
if (! err)
{
- fprintf (stream, (show & PORTINFO_HEX_NAMES) ? "%#6zx => " : "%6zd => ",
+ fprintf (stream, (show & PORTINFO_HEX_NAMES) ? "%#6lx => " : "%6lu => ",
old_name);
err = print_port_info (name, type, x->to_task, show, stream);
}
--
Alioth's /usr/local/bin/git-commit-notice on
/srv/git.debian.org/git/pkg-hurd/hurd.git
- [hurd] 34/75: boot: Fix boot.c compiler warning., (continued)
- [hurd] 34/75: boot: Fix boot.c compiler warning., Samuel Thibault, 2016/01/13
- [hurd] 53/75: fix compiler warnings in hurd/startup, Samuel Thibault, 2016/01/13
- [hurd] 36/75: fix compiler warnings in hurd/daemons, Samuel Thibault, 2016/01/13
- [hurd] 37/75: fix compiler warnings in hurd/exec, Samuel Thibault, 2016/01/13
- [hurd] 44/75: fix compiler warnings in hurd/libihash, Samuel Thibault, 2016/01/13
- [hurd] 42/75: fix compiler warnings in hurd/isofs, Samuel Thibault, 2016/01/13
- [hurd] 43/75: fix compiler warnings in hurd/libftpconn, Samuel Thibault, 2016/01/13
- [hurd] 61/75: fix compiler warning in hurd/fstests, Samuel Thibault, 2016/01/13
- [hurd] 45/75: fix compiler warnings in hurd/libnetfs, Samuel Thibault, 2016/01/13
- [hurd] 59/75: Use DEVICE_IMPORTS to include libports/ports.h, Samuel Thibault, 2016/01/13
- [hurd] 46/75: fix compiler warnings in hurd/libshouldbeinlibc,
Samuel Thibault <=