diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-07-23 08:51:46 -0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-07-24 06:36:10 -0400 |
commit | eeb16e87b6747c9a4f5769f33467c9d173e9f5ee (patch) | |
tree | 550305f0c717479db26a44d3c5b86bc4ba178950 /drivers/mtd | |
parent | 9869cd801c107bbae91663c3f4edbb6b5715919f (diff) |
UBI: fix gcc warning
Fix the following warning:
drivers/mtd/ubi/vmt.c: In function 'ubi_rename_volumes':
drivers/mtd/ubi/vmt.c:642: warning: statement with no effect
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/ubi/vmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/ubi/vmt.c b/drivers/mtd/ubi/vmt.c index d40066833abb..3531ca9a1e24 100644 --- a/drivers/mtd/ubi/vmt.c +++ b/drivers/mtd/ubi/vmt.c | |||
@@ -639,7 +639,7 @@ int ubi_rename_volumes(struct ubi_device *ubi, struct list_head *rename_list) | |||
639 | } | 639 | } |
640 | 640 | ||
641 | if (!err) | 641 | if (!err) |
642 | paranoid_check_volumes(ubi); | 642 | err = paranoid_check_volumes(ubi); |
643 | return err; | 643 | return err; |
644 | } | 644 | } |
645 | 645 | ||