diff options
author | Günther Deschner <gd@samba.org> | 2007-08-29 13:52:07 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:30:20 -0500 |
commit | 24fc1d6dd5fce0fc02813d9bb68c12b7539de413 (patch) | |
tree | 7c7acf830b8073a10e482487b83cb8f785be836a | |
parent | 53d41f3b1b0b7fc3550e0ee4906405f7afbf114c (diff) | |
download | samba-24fc1d6dd5fce0fc02813d9bb68c12b7539de413.tar.gz samba-24fc1d6dd5fce0fc02813d9bb68c12b7539de413.tar.xz samba-24fc1d6dd5fce0fc02813d9bb68c12b7539de413.zip |
r24781: Fix build warning.
Guenther
(This used to be commit 71307c371fea917b91214df7a24cd91170d40dd9)
-rw-r--r-- | source3/web/statuspage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/web/statuspage.c b/source3/web/statuspage.c index e90a94d9e7f..a03c7998ed4 100644 --- a/source3/web/statuspage.c +++ b/source3/web/statuspage.c @@ -56,7 +56,7 @@ static void initPid2Machine (void) } /* add new PID <-> Machine name mapping */ -static void addPid2Machine (struct server_id pid, char *machine) +static void addPid2Machine (struct server_id pid, const char *machine) { /* show machine name rather PID on table "Open Files"? */ if (PID_or_Machine) { |