Skip to content

Commit

Permalink
Fix compiler warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Feb 17, 2015
1 parent 2327fc8 commit e23d017
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dird/ndmp_dma.c
Expand Up @@ -1167,7 +1167,7 @@ extern "C" int bndmp_add_file(struct ndmlog *ixlog, int tagc, char *raw_name,
ndmp9_file_stat *fstat)
{
NIS *nis;
int8_t FileType;
int8_t FileType = 0;
char attribs[MAXSTRING];
char namebuf[NDMOS_CONST_PATH_MAX];
POOL_MEM pathname(PM_FNAME);
Expand Down Expand Up @@ -1272,7 +1272,7 @@ extern "C" int bndmp_add_node(struct ndmlog *ixlog, int tagc,
{
NIS *nis;
int attr_size;
int8_t FileType;
int8_t FileType = 0;
N_TREE_NODE *wanted_node;
char attribs[MAXSTRING];

Expand Down

0 comments on commit e23d017

Please sign in to comment.