Displaying 1 result from an estimated 1 matches for "b8eadfb".
Did you mean:
38eadf7
2009 Dec 09
2
[PATCH] memdisk: Fix "might be used uninitialized" warnings
...The checksum_buf function was providing an incorrect checksum
on at least one build.
Signed-off-by: Shao Miller <shao.miller at yrdsb.edu.on.ca>
---
memdisk/setup.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/memdisk/setup.c b/memdisk/setup.c
index ea17afd..b8eadfb 100644
--- a/memdisk/setup.c
+++ b/memdisk/setup.c
@@ -592,7 +592,7 @@ static const struct geometry
*get_disk_image_geometry(uint32_t where,
while (!ok) {
/* Assume it's a floppy drive, guess a geometry */
unsigned int type, track;
- int c, h, s;
+...