diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2011-08-15 19:54:20 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2011-08-15 19:54:20 +0000 |
commit | 082c8b559cd9f3262c9af58ac2f17f2cc8a09d8b (patch) | |
tree | ce63847ee6cc1e63289e3f658a5d57ebd35b3619 /dmi.c | |
parent | 0528b7fefa6daf35365c1dee0d21bc94e8120f78 (diff) | |
download | flashrom-082c8b559cd9f3262c9af58ac2f17f2cc8a09d8b.tar.gz flashrom-082c8b559cd9f3262c9af58ac2f17f2cc8a09d8b.tar.bz2 flashrom-082c8b559cd9f3262c9af58ac2f17f2cc8a09d8b.zip |
Fixup of r1397
- Mixing uninitialized and initialized local variables leads to
confusion.
- ft2232_spi error cases should have gotten some error handling, and
that's the reason the curly braces were there.
- Fixing typos/wording in some places would have been nice given that
those places were touched anyway.
Corresponding to flashrom svn r1413.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Diffstat (limited to 'dmi.c')
-rw-r--r-- | dmi.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -196,7 +196,8 @@ void dmi_init(void) */ static int dmi_compare(const char *value, const char *pattern) { - int anchored = 0, patternlen; + int anchored = 0; + int patternlen; msg_pspew("matching %s against %s\n", value, pattern); /* The empty string is part of all strings! */ |