diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-12-10 13:46:45 -0800 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-11 14:35:01 -0800 |
commit | f654c854d1d4e0aca5389ace541647237eb7f753 (patch) | |
tree | 1b0e12ee723795bef70723749315a780e41c7b52 /net/ax25 | |
parent | 8109b02b5397ed52a32c116163a62a34f4768b26 (diff) | |
download | op-kernel-dev-f654c854d1d4e0aca5389ace541647237eb7f753.zip op-kernel-dev-f654c854d1d4e0aca5389ace541647237eb7f753.tar.gz |
[HAMRADIO]: Fix baycom_epp.c compile failure.
Fix foobar in 15b1c0e822f578306332d4f4c449250db5c5dceb and
e8cc49bb0fdb9e18a99e6780073d1400ba2b0d1f patch series.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ax25')
-rw-r--r-- | net/ax25/ax25_addr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ax25/ax25_addr.c b/net/ax25/ax25_addr.c index 21a0616..97a49c7 100644 --- a/net/ax25/ax25_addr.c +++ b/net/ax25/ax25_addr.c @@ -83,7 +83,7 @@ EXPORT_SYMBOL(ax2asc); */ void asc2ax(ax25_address *addr, const char *callsign) { - char *s; + const char *s; int n; for (s = callsign, n = 0; n < 6; n++) { |