aboutsummaryrefslogtreecommitdiff
path: root/common/xyzModem.c
diff options
context:
space:
mode:
authorKim Phillips <kim.phillips@freescale.com>2009-06-15 11:50:40 -0500
committerWolfgang Denk <wd@denx.de>2009-07-19 21:37:02 +0200
commit2a2ed845c085eb093b69fa6382fcf7534bb1f4b0 (patch)
tree5fae1a48efcdede436184ab2cb0c3a24cc91f1d7 /common/xyzModem.c
parent1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460 (diff)
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>
Diffstat (limited to 'common/xyzModem.c')
-rw-r--r--common/xyzModem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/xyzModem.c b/common/xyzModem.c
index a209dfa4a..7a46805e1 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;