1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 16:52:14 +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

@@ -526,7 +526,7 @@ extern ushort string_to_VLAN(char *s);
extern ushort getenv_VLAN(char *);
/* copy a filename (allow for "..." notation, limit length) */
extern void copy_filename (char *dst, char *src, int size);
extern void copy_filename (char *dst, const char *src, int size);
/* get a random source port */
extern unsigned int random_port(void);