diff options
| author | wdenk <wdenk> | 2004-09-08 22:03:11 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2004-09-08 22:03:11 +0000 | 
| commit | eedcd078fe1434d93b84322c4e14c52f80282a41 (patch) | |
| tree | 0dd7b16045dd41fbda926f929f1d7cf8edbd2ae0 /board/lwmon/lwmon.c | |
| parent | 7ca202f566a6e9dc3d0dd0216e82ad1a48f50f19 (diff) | |
| download | olio-uboot-2014.01-eedcd078fe1434d93b84322c4e14c52f80282a41.tar.xz olio-uboot-2014.01-eedcd078fe1434d93b84322c4e14c52f80282a41.zip | |
* Patch by Detlev Zundel, 08 Sep 2004:LABEL_2004_09_09_0000
  Update etags build target
* Improve NetConsole support: add support for broadcast destination
  address and buffered input.
* Cleanup compiler warnings for GCC 3.3.x and later
* Fix problem in cmd_jffs2.c introduced by CFG_JFFS_SINGLE_PART patch
Diffstat (limited to 'board/lwmon/lwmon.c')
| -rw-r--r-- | board/lwmon/lwmon.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/board/lwmon/lwmon.c b/board/lwmon/lwmon.c index 904e7ea98..5b2b41a97 100644 --- a/board/lwmon/lwmon.c +++ b/board/lwmon/lwmon.c @@ -643,7 +643,7 @@ static uchar kbd_command_prefix[] = "key_cmd";  static int compare_magic (uchar *kbd_data, uchar *str)  {  	uchar compare[KEYBD_DATALEN-1]; -	uchar *nxt; +	char *nxt;  	int i;  	/* Don't include modifier byte */ @@ -655,7 +655,7 @@ static int compare_magic (uchar *kbd_data, uchar *str)  		c = (uchar) simple_strtoul (str, (char **) (&nxt), 16); -		if (str == nxt) {	/* invalid character */ +		if (str == (uchar *)nxt) {	/* invalid character */  			break;  		} |