diff options
author | Phillip Susi <psusi@ubuntu.com> | 2014-03-17 22:07:55 -0400 |
---|---|---|
committer | Phillip Susi <psusi@ubuntu.com> | 2014-04-18 12:55:21 -0400 |
commit | 80678bdd957cf49a9ccfc8b88ba3fb8b4c63fc12 (patch) | |
tree | 5e5396f7d88cbc096f5049f4687ce7a5b17507ef /include/parted | |
parent | d0a4cc1b57750a92afb48b229e4791154afa322b (diff) | |
download | parted-80678bdd957cf49a9ccfc8b88ba3fb8b4c63fc12.tar.gz |
Fix filesystem detection on non 512 byte sectors
Enable probing for filesystems with non 512 byte sectors, and fix up each
filesystem to correctly handle that. Remove unused field from the fs type
structure listing acceptable sector sizes.
Diffstat (limited to 'include/parted')
-rw-r--r-- | include/parted/filesys.in.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/parted/filesys.in.h b/include/parted/filesys.in.h index d9f626b..b42d7c9 100644 --- a/include/parted/filesys.in.h +++ b/include/parted/filesys.in.h @@ -46,7 +46,6 @@ struct _PedFileSystemOps { struct _PedFileSystemType { PedFileSystemType* next; const char* const name; /**< name of the file system type */ - const int* block_sizes; PedFileSystemOps* const ops; }; |