first partition is 0, not 1

This commit is contained in:
Laurent Vivier 2004-12-16 23:21:20 +00:00
parent 42e8bdda0e
commit 14f8b6c5ed

View File

@ -49,7 +49,7 @@ emile_map_t* emile_map_open(char *dev, int flags)
free(map);
return NULL;
}
map->current = 1;
map->current = 0;
return map;
}