* [PATCH v2] xyzModem.c: fix 'dummy' is used uninitialized in this function warning
@ 2010-12-20 14:14 Fabio Porcedda
0 siblings, 0 replies; only message in thread
From: Fabio Porcedda @ 2010-12-20 14:14 UTC (permalink / raw)
To: barebox
fix this gcc 4.4 warning:
xyzModem.c: In function 'xyzModem_stream_open':
xyzModem.c:564: warning: 'dummy' is used uninitialized in this function
Copied from U-Boot
Signed-off-by: Fabio Porcedda <fabio.porcedda@telit.com>
---
commands/xyzModem.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/commands/xyzModem.c b/commands/xyzModem.c
index 1dd255d..71d7d68 100644
--- a/commands/xyzModem.c
+++ b/commands/xyzModem.c
@@ -492,7 +492,7 @@ int 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;
--
1.7.3.4
Changes for v2:
- fixed commit log message
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-12-20 14:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-12-20 14:14 [PATCH v2] xyzModem.c: fix 'dummy' is used uninitialized in this function warning Fabio Porcedda
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox