libblkid: fix gcc warnings

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2011-03-01 15:31:49 +01:00
parent c2ec2ff9a2
commit 3d604b4367
2 changed files with 3 additions and 3 deletions

View File

@ -289,7 +289,7 @@ static struct gpt_header *get_gpt_header(
static int probe_gpt_pt(blkid_probe pr, const struct blkid_idmag *mag)
{
uint64_t lastlba, lba;
uint64_t lastlba = 0, lba;
struct gpt_header hdr, *h;
struct gpt_entry *e;
blkid_parttable tab = NULL;

View File

@ -305,8 +305,8 @@ static int parse_xml(char **name, char **value, char **cp)
*/
static int parse_tag(blkid_cache cache, blkid_dev dev, char **cp)
{
char *name;
char *value;
char *name = NULL;
char *value = NULL;
int ret;
if (!cache || !dev)