From 3430da5f9f77051239e7223c5caa023b1f581e25 Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Wed, 26 Mar 2014 03:18:36 +0000 Subject: [PATCH] Cleanup git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@5384 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scst/src/scst_sysfs.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scst/src/scst_sysfs.c b/scst/src/scst_sysfs.c index bcd351f56..8ca303484 100644 --- a/scst/src/scst_sysfs.c +++ b/scst/src/scst_sysfs.c @@ -1760,8 +1760,7 @@ static ssize_t __scst_acg_black_hole_show(struct scst_acg *acg, char *buf) { int res, t = acg->acg_black_hole_type; - res = sprintf(buf, "%d\n%s\n", t, - (t != SCST_ACG_BLACK_HOLE_NONE) ? SCST_SYSFS_KEY_MARK : ""); + res = sprintf(buf, "%d\n", t); return res; }