1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-02 01:02:19 +02:00

copy_filename: constify "src" arg

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger
2010-10-20 07:16:40 -04:00
committed by Wolfgang Denk
parent 722b061b6f
commit b920ee9db2
2 changed files with 2 additions and 2 deletions

View File

@@ -1865,7 +1865,7 @@ NetSetIP(volatile uchar * xip, IPaddr_t dest, int dport, int sport, int len)
ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
}
void copy_filename (char *dst, char *src, int size)
void copy_filename (char *dst, const char *src, int size)
{
if (*src && (*src == '"')) {
++src;