Skip to content

Commit

Permalink
Merge pull request #216 from hpc/fix-preserve-type
Browse files Browse the repository at this point in the history
Fix type error when setting preserve option in dcp
  • Loading branch information
dsikich committed Jan 8, 2019
2 parents 3a40440 + a8c4d0c commit 292a10a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dcp/dcp.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ int main(int argc, char** argv)
} }
break; break;
case 'p': case 'p':
mfu_copy_opts->preserve = 1; mfu_copy_opts->preserve = true;
if(rank == 0) { if(rank == 0) {
MFU_LOG(MFU_LOG_INFO, "Preserving file attributes."); MFU_LOG(MFU_LOG_INFO, "Preserving file attributes.");
} }
Expand Down

0 comments on commit 292a10a

Please sign in to comment.