From 2016ff96d1739b5ced1d37e7266720e7531b8212 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 22 Feb 2013 11:28:28 -0800 Subject: [PATCH] Fix zdb.8 macro warning Detected by rpmlint the 'rpool/export/home' section was being interpretted by troff as an undefined macro. This resulted in the 'rpool/export/home' output being omitted from 'man zdb'. This was caused by starting the line with a ' character. By moving the 'in' down to the next line we're able to fix it. zfs.x86_64: W: manual-page-warning /usr/share/man/man8/zdb.8.gz 450: warning: macro `rpool/export/home'' not defined Signed-off-by: Brian Behlendorf --- man/man8/zdb.8 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/man8/zdb.8 b/man/man8/zdb.8 index 08bb8e4..3ce3265 100644 --- a/man/man8/zdb.8 +++ b/man/man8/zdb.8 @@ -446,8 +446,8 @@ Dataset rpool/swap [ZVOL], ID 59, cr_txg 356, 486M, 2 objects .sp .LP -\fBExample 3 \fRDisplay basic information about object 0 in -'rpool/export/home' +\fBExample 3 \fRDisplay basic information about object 0 +in 'rpool/export/home' .sp .in +2 .nf -- 1.8.3.1