diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-05-22 00:28:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-22 00:38:17 -0400 |
commit | 72dd9ca59944f117c719a1cc3fc9010bce0486f2 (patch) | |
tree | 17faed000c59acb0b2d2e9e0bc511c224277b188 /fs/partitions | |
parent | efa5bf1dd2cf3cdee0bfe97cfd76ff2296179ae4 (diff) |
partitions/LDM: build fix
This from a "tested" patch...
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Cc: Anton Altaparmakov <aia21@cantab.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/partitions')
-rw-r--r-- | fs/partitions/ldm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/partitions/ldm.c b/fs/partitions/ldm.c index c387812537d7..99873a2b4cbc 100644 --- a/fs/partitions/ldm.c +++ b/fs/partitions/ldm.c | |||
@@ -158,7 +158,7 @@ static bool ldm_parse_privhead(const u8 *data, struct privhead *ph) | |||
158 | /* Warn the user and continue, carefully. */ | 158 | /* Warn the user and continue, carefully. */ |
159 | ldm_info("Database is normally %u bytes, it claims to " | 159 | ldm_info("Database is normally %u bytes, it claims to " |
160 | "be %llu bytes.", LDM_DB_SIZE, | 160 | "be %llu bytes.", LDM_DB_SIZE, |
161 | udunsigned long long)ph->config_size); | 161 | (unsigned long long)ph->config_size); |
162 | } | 162 | } |
163 | if ((ph->logical_disk_size == 0) || (ph->logical_disk_start + | 163 | if ((ph->logical_disk_size == 0) || (ph->logical_disk_start + |
164 | ph->logical_disk_size > ph->config_start)) { | 164 | ph->logical_disk_size > ph->config_start)) { |