From: Mike Frysinger Date: Wed, 20 Oct 2010 11:16:48 +0000 (-0400) Subject: string_to_VLAN: constify "var" arg X-Git-Tag: v2011.03-rc1~55^2~43 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e3ef6e4e475ecd0f4dfe3888b98aa077ef790fe;p=pandora-u-boot.git string_to_VLAN: constify "var" arg Signed-off-by: Mike Frysinger --- diff --git a/include/net.h b/include/net.h index dd673f0ece8..5e3495bd75c 100644 --- a/include/net.h +++ b/include/net.h @@ -520,7 +520,7 @@ extern IPaddr_t string_to_ip(char *s); extern void VLAN_to_string (ushort x, char *s); /* Convert a string to a vlan id */ -extern ushort string_to_VLAN(char *s); +extern ushort string_to_VLAN(const char *s); /* read a VLAN id from an environment variable */ extern ushort getenv_VLAN(char *); diff --git a/net/net.c b/net/net.c index 7576419b7a3..a6096324126 100644 --- a/net/net.c +++ b/net/net.c @@ -1913,7 +1913,7 @@ void VLAN_to_string(ushort x, char *s) sprintf(s, "%d", x & VLAN_IDMASK); } -ushort string_to_VLAN(char *s) +ushort string_to_VLAN(const char *s) { ushort id;