aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Rookard <garyrookard@gmail.com>2014-03-10 21:47:43 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-03-17 14:24:35 -0700
commitfdb59a46c655ca00efa244fd51fff3c4687e34ec (patch)
treefe0d6bcb6f651059d2a899c8dce7d7444206cf4e
parent5cbcd111f04b10aae18649d79333c38bef3a3ddf (diff)
Staging: lustre: fld: fix split string.
unsplit string from two lines to one. Signed-off-by: Gary Alan Rookard <garyrookard@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/lustre/lustre/fld/fld_cache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/lustre/lustre/fld/fld_cache.c b/drivers/staging/lustre/lustre/fld/fld_cache.c
index 6c379301df8..9469e23b515 100644
--- a/drivers/staging/lustre/lustre/fld/fld_cache.c
+++ b/drivers/staging/lustre/lustre/fld/fld_cache.c
@@ -236,8 +236,8 @@ static int fld_cache_shrink(struct fld_cache *cache)
num++;
}
- CDEBUG(D_INFO, "%s: FLD cache - Shrunk by "
- "%d entries\n", cache->fci_name, num);
+ CDEBUG(D_INFO, "%s: FLD cache - Shrunk by %d entries\n",
+ cache->fci_name, num);
return 0;
}