[U-Boot] [PATCH] common: fix 'dummy' is used uninitialized in this function warning

fix this gcc 4.4 warning:
xyzModem.c: In function 'xyzModem_stream_open': xyzModem.c:564: warning: 'dummy' is used uninitialized in this function
Signed-off-by: Kim Phillips kim.phillips@freescale.com --- common/xyzModem.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/common/xyzModem.c b/common/xyzModem.c index a209dfa..7a46805 100644 --- a/common/xyzModem.c +++ b/common/xyzModem.c @@ -544,7 +544,7 @@ xyzModem_stream_open (connection_info_t * info, int *err) xyzModem_CHAR_TIMEOUT); #else /* TODO: CHECK ! */ - int dummy; + int dummy = 0; xyz.__chan = &dummy; #endif xyz.len = 0;

Dear Kim Phillips,
In message 20090615115040.5932bd21.kim.phillips@freescale.com you wrote:
fix this gcc 4.4 warning:
xyzModem.c: In function 'xyzModem_stream_open': xyzModem.c:564: warning: 'dummy' is used uninitialized in this function
Signed-off-by: Kim Phillips kim.phillips@freescale.com
common/xyzModem.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
Applied, thanks.
Best regards,
Wolfgang Denk
participants (2)
-
Kim Phillips
-
Wolfgang Denk