summaryrefslogtreecommitdiffstats
path: root/libblkid/src/probe.c
diff options
context:
space:
mode:
authorKarel Zak2015-05-28 12:28:23 +0200
committerKarel Zak2015-05-28 12:28:23 +0200
commitd5dbd57b2294d177264705214bca433e85d79ab6 (patch)
tree708e38bf32501679f1b6b784c285744869cf257e /libblkid/src/probe.c
parentlib/sysfs: rename devname functions, cleanup (diff)
downloadkernel-qcow2-util-linux-d5dbd57b2294d177264705214bca433e85d79ab6.tar.gz
kernel-qcow2-util-linux-d5dbd57b2294d177264705214bca433e85d79ab6.tar.xz
kernel-qcow2-util-linux-d5dbd57b2294d177264705214bca433e85d79ab6.zip
docs: fix gtk-docs related warnings
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libblkid/src/probe.c')
-rw-r--r--libblkid/src/probe.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libblkid/src/probe.c b/libblkid/src/probe.c
index fa0645907..f097373b8 100644
--- a/libblkid/src/probe.c
+++ b/libblkid/src/probe.c
@@ -942,7 +942,6 @@ static inline void blkid_probe_end(blkid_probe pr)
* <example>
* <title>basic case - use the first result only</title>
* <programlisting>
- *
* if (blkid_do_probe(pr) == 0) {
* int nvals = blkid_probe_numof_values(pr);
* for (n = 0; n < nvals; n++) {
@@ -956,7 +955,6 @@ static inline void blkid_probe_end(blkid_probe pr)
* <example>
* <title>advanced case - probe for all signatures</title>
* <programlisting>
- *
* while (blkid_do_probe(pr) == 0) {
* int nvals = blkid_probe_numof_values(pr);
* ...