commit | eeb16e87b6747c9a4f5769f33467c9d173e9f5ee | [log] [tgz] |
---|---|---|
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | Wed Jul 23 15:51:46 2008 +0300 |
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | Thu Jul 24 13:36:10 2008 +0300 |
tree | 550305f0c717479db26a44d3c5b86bc4ba178950 | |
parent | 9869cd801c107bbae91663c3f4edbb6b5715919f [diff] [blame] |
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>
diff --git a/drivers/mtd/ubi/vmt.c b/drivers/mtd/ubi/vmt.c index d400668..3531ca9 100644 --- a/drivers/mtd/ubi/vmt.c +++ b/drivers/mtd/ubi/vmt.c
@@ -639,7 +639,7 @@ } if (!err) - paranoid_check_volumes(ubi); + err = paranoid_check_volumes(ubi); return err; }