From 45f0525b8e4404281aaa4581757aabdb62536a6b Mon Sep 17 00:00:00 2001 From: Nicolas Iooss Date: Sat, 9 Jun 2018 21:30:31 +0200 Subject: [PATCH] libsepol/cil: use a colon instead of a semicolon to report rc Signed-off-by: Nicolas Iooss --- libsepol/cil/src/cil_resolve_ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsepol/cil/src/cil_resolve_ast.c b/libsepol/cil/src/cil_resolve_ast.c index 02259241..fb9d9174 100644 --- a/libsepol/cil/src/cil_resolve_ast.c +++ b/libsepol/cil/src/cil_resolve_ast.c @@ -2923,7 +2923,7 @@ int cil_resolve_call1(struct cil_tree_node *current, void *extra_args) rc = cil_fill_ipaddr(pc->cl_head, ipaddr); if (rc != SEPOL_OK) { - cil_log(CIL_ERR, "Failed to create anonymous ip address, rc; %d\n", rc); + cil_log(CIL_ERR, "Failed to create anonymous ip address, rc: %d\n", rc); cil_destroy_ipaddr(ipaddr); goto exit; }