chiark / gitweb /
fix segfaulting create_floppy_devices
authorKay Sievers <kay.sievers@suse.de>
Thu, 15 Dec 2005 14:56:50 +0000 (15:56 +0100)
committerKay Sievers <kay.sievers@suse.de>
Thu, 15 Dec 2005 14:56:50 +0000 (15:56 +0100)
Signed-off-by: Kay Sievers <kay.sievers@suse.de>
extras/floppy/create_floppy_devices.c

index b2906106d40dfc69825c7fe37b69969c6cf4730b..91d3a581953c8e05521b2b33da6cb137bdaa9521 100644 (file)
@@ -31,9 +31,9 @@ static char *table[] = {
        NULL
 };
 
-static int t360[] = { 1 };
-static int t1200[] = { 2, 5, 6, 10, 12, 14, 16, 18, 20, 23 };
-static int t3in[] = { 8, 9, 26, 27, 28, 7, 11, 15, 19, 24, 25, 29, 31, 3, 4, 13, 17, 21, 22, 30 };
+static int t360[] = { 1, 0 };
+static int t1200[] = { 2, 5, 6, 10, 12, 14, 16, 18, 20, 23, 0 };
+static int t3in[] = { 8, 9, 26, 27, 28, 7, 11, 15, 19, 24, 25, 29, 31, 3, 4, 13, 17, 21, 22, 30, 0 };
 
 static int *table_sup[] = { NULL, t360, t1200, t3in + 5 + 8, t3in + 5, t3in, t3in };
 
@@ -112,7 +112,7 @@ int main(int argc, char **argv)
 
        i = 0;
        while (table_sup[type][i]) {
-               sprintf(node,"%s%s",dev,table[table_sup[type][i]]);
+               sprintf(node, "%s%s",dev, table[table_sup[type][i]]);
                minor = (table_sup[type][i] << 2) + fdnum;
                if (print_nodes)
                        printf("%s b %d %d %d\n", node, mode, major, minor);