diff options
author | Andre Noll <maan@systemlinux.org> | 2008-03-23 15:10:33 +0100 |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2008-07-08 10:53:20 +1000 |
commit | 35020f1a06edade6f52fc8349e150d95cdf7fd90 (patch) | |
tree | 97941f31c713ddb4a5882a81af891fc1e9cc92e3 /drivers/md | |
parent | 7f6ce7692807ad60d9341e41d565a7888a5bc2dd (diff) |
md: sb_equal(): Fix misleading printk.
Signed-off-by: Andre Noll <maan@systemlinux.org>
Signed-off-by: Neil Brown <neilb@suse.de>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/md.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index a849e06f861..73399d17ac3 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -564,7 +564,7 @@ static int sb_equal(mdp_super_t *sb1, mdp_super_t *sb2) if (!tmp1 || !tmp2) { ret = 0; - printk(KERN_INFO "md.c: sb1 is not equal to sb2!\n"); + printk(KERN_INFO "md.c sb_equal(): failed to allocate memory!\n"); goto abort; } |