Skip to content

Commit

Permalink
modules/kvs-watch: Fix double ;; typos
Browse files Browse the repository at this point in the history
  • Loading branch information
chu11 committed Dec 7, 2018
1 parent 985f5d2 commit edc1082
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/kvs-watch/kvs-watch.c
Expand Up @@ -706,7 +706,7 @@ static void namespace_created_cb (flux_t *h, flux_msg_handler_t *mh,
if (!(commit = commit_create (rootref, rootseq, NULL))) {
flux_log_error (h, "%s: error creating commit", __FUNCTION__);
ns->errnum = errno;
goto done;;
goto done;
}
ns->commit = commit;
if (ns->owner == FLUX_USERID_UNKNOWN)
Expand Down Expand Up @@ -746,7 +746,7 @@ static void setroot_cb (flux_t *h, flux_msg_handler_t *mh,
if (!(commit = commit_create (rootref, rootseq, keys))) {
flux_log_error (h, "%s: error creating commit", __FUNCTION__);
ns->errnum = errno;
goto done;;
goto done;
}
commit_destroy (ns->commit);
ns->commit = commit;
Expand Down

0 comments on commit edc1082

Please sign in to comment.