diff options
| author | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-13 16:45:02 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-13 16:45:02 +0200 | 
| commit | 77ddac9480d63a80b6bb76d7ee4dcc2d1070867e (patch) | |
| tree | e9563b2f28ea59062b90bb5712f141e8e9798aee /include/common.h | |
| parent | 17a8b276ba2b3499b75cd60b0b5289dbbea7967b (diff) | |
| download | olio-uboot-2014.01-77ddac9480d63a80b6bb76d7ee4dcc2d1070867e.tar.xz olio-uboot-2014.01-77ddac9480d63a80b6bb76d7ee4dcc2d1070867e.zip | |
Cleanup for GCC-4.x
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/include/common.h b/include/common.h index 8536a99c0..d2570a803 100644 --- a/include/common.h +++ b/include/common.h @@ -208,8 +208,8 @@ extern ulong load_addr;		/* Default Load Address */  /* common/cmd_nvedit.c */  int	env_init     (void);  void	env_relocate (void); -char	*getenv	     (uchar *); -int	getenv_r     (uchar *name, uchar *buf, unsigned len); +char	*getenv	     (char *); +int	getenv_r     (char *name, char *buf, unsigned len);  int	saveenv	     (void);  #ifdef CONFIG_PPC		/* ARM version to be fixed! */  void inline setenv   (char *, char *); |