diff options
author | Vivenzio Pagliari <vivenzio.pagliari@gmx.de> | 2010-10-25 13:58:54 +0200 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-10-25 22:25:48 +0300 |
commit | 33163dc9b2650e0a7f5f2d9fcc4b20c77b8db5bf (patch) | |
tree | 2f93264d14fda06823f24a932041656a05dc768a | |
parent | dea52ed97103050ec8e797aa0e084bfe090e0fd1 (diff) |
mkfs.ubifs: Fix typo in short options of mkfs.ubifs
The short option for specifying the count of erase blocks for orphans '-p'
was not detected due to a typo.
Signed-off-by: Vivenzio Pagliari <vivenzio.pagliari@gmx.de>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
-rw-r--r-- | mkfs.ubifs/mkfs.ubifs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mkfs.ubifs/mkfs.ubifs.c b/mkfs.ubifs/mkfs.ubifs.c index d83f6bd..bc0817f 100644 --- a/mkfs.ubifs/mkfs.ubifs.c +++ b/mkfs.ubifs/mkfs.ubifs.c @@ -132,7 +132,7 @@ static struct inum_mapping **hash_table; /* Inode creation sequence number */ static unsigned long long creat_sqnum; -static const char *optstring = "d:r:m:o:D:h?vVe:c:g:f:P:k:x:X:j:R:l:j:UQq"; +static const char *optstring = "d:r:m:o:D:h?vVe:c:g:f:p:k:x:X:j:R:l:j:UQq"; static const struct option longopts[] = { {"root", 1, NULL, 'r'}, |