From: zkabelac@sourceware.org <zkabelac@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2/test/api percent.c
Date: 20 Dec 2010 12:29:40 -0000 [thread overview]
Message-ID: <20101220122940.25360.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: zkabelac at sourceware.org 2010-12-20 12:29:39
Modified files:
test/api : percent.c
Log message:
Move var declarations to function begining
As assert macro jumps to 'bad:' label - we need vg initialized.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/test/api/percent.c.diff?cvsroot=lvm2&r1=1.1&r2=1.2
--- LVM2/test/api/percent.c 2010/12/14 23:20:59 1.1
+++ LVM2/test/api/percent.c 2010/12/20 12:29:39 1.2
@@ -4,16 +4,21 @@
int main(int argc, char *argv[])
{
- lvm_t handle = lvm_init(NULL);
+ lvm_t handle;
+ vg_t vg = NULL;
+ lv_t lv;
+ struct lvm_property_value v;
+
+ handle = lvm_init(NULL);
assert(handle);
- vg_t vg = lvm_vg_open(handle, argv[1], "r", 0);
+ vg = lvm_vg_open(handle, argv[1], "r", 0);
assert(vg);
- lv_t lv = lvm_lv_from_name(vg, "snap");
+ lv = lvm_lv_from_name(vg, "snap");
assert(lv);
- struct lvm_property_value v = lvm_lv_get_property(lv, "snap_percent");
+ v = lvm_lv_get_property(lv, "snap_percent");
assert(v.is_valid);
assert(v.value.integer == PERCENT_0);
next reply other threads:[~2010-12-20 12:29 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-12-20 12:29 zkabelac [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-01-03 15:07 LVM2/test/api percent.c mornfall
2011-01-26 21:21 zkabelac
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20101220122940.25360.qmail@sourceware.org \
--to=zkabelac@sourceware.org \
--cc=lvm-devel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.