Navigation Menu

Skip to content

Commit

Permalink
Fix compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Feb 17, 2015
1 parent 3890d24 commit ac2ffca
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/ndmp/ndma_control.c
Expand Up @@ -101,12 +101,11 @@ int
ndmca_control_agent (struct ndm_session *sess)
{
struct ndm_job_param * job = &sess->control_acb->job;
int rc;
int rc = -1;

switch (job->operation) {
default:
ndmalogf (sess, 0, 0, "Job operation invalid");
rc = -1;
break;

case NDM_JOB_OP_INIT_LABELS:
Expand Down

0 comments on commit ac2ffca

Please sign in to comment.