Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Sep 5, 2015
1 parent 7709a11 commit 26f83f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/xlat.c
Expand Up @@ -1455,10 +1455,10 @@ static ssize_t xlat_tokenize_literal(TALLOC_CTX *ctx, char *fmt, xlat_exp_t **he
xlat_exp_t *next;

if (!p[1] || !strchr("%dlmntDGHISTYv", p[1])) {
talloc_free(node);
*error = "Invalid variable expansion";
p++;
return - (p - fmt);
talloc_free(node);
*error = "Invalid variable expansion";
p++;
return - (p - fmt);
}

next = talloc_zero(node, xlat_exp_t);
Expand Down

0 comments on commit 26f83f8

Please sign in to comment.