aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaulo Alcantara <pcacjr@zytor.com>2012-07-23 11:55:30 -0300
committerPaulo Alcantara <pcacjr@zytor.com>2012-07-23 11:55:30 -0300
commit783575baac3bcc3d3f603c35af3c7be4bfe2420a (patch)
tree7255e68faa76df87dd671f81a914dab92dfba4f1
parent85e0d335bee51eab9b7917008cdf7774cb9b636b (diff)
downloadsyslinux-783575baac3bcc3d3f603c35af3c7be4bfe2420a.tar.gz
syslinux-783575baac3bcc3d3f603c35af3c7be4bfe2420a.tar.xz
syslinux-783575baac3bcc3d3f603c35af3c7be4bfe2420a.zip
xfs: Use xfs_debug() for "Entry not found!" message
Printing "Entry not found!" as an error message does not make any sense, so use xfs_debug() for printing it out instead. Signed-off-by: Paulo Alcantara <pcacjr@zytor.com>
-rw-r--r--core/fs/xfs/xfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fs/xfs/xfs.c b/core/fs/xfs/xfs.c
index 9107024a..3c0568e5 100644
--- a/core/fs/xfs/xfs.c
+++ b/core/fs/xfs/xfs.c
@@ -901,8 +901,8 @@ static struct inode *xfs_iget(const char *dname, struct inode *parent)
}
if (!inode) {
- xfs_error("Entry not found!");
- goto out;
+ xfs_debug("Entry not found!");
+ goto out;
}
if (inode->mode == DT_REG) {