Skip to content

Commit

Permalink
[Minor] Fix format string
Browse files Browse the repository at this point in the history
  • Loading branch information
vstakhov committed May 24, 2019
1 parent 92ec3e3 commit c4cb804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libserver/cfg_rcl.c
Expand Up @@ -3511,7 +3511,7 @@ rspamd_rcl_maybe_apply_lua_transform (struct rspamd_config *cfg)
ucl_object_push_lua (L, cfg->rcl_obj, true);

if ((ret = lua_pcall (L, 1, 2, err_idx)) != 0) {
msg_err ("call to rspamadm lua script failed (%d): %v", ret,
msg_err ("call to rspamadm lua script failed (%d): %s", ret,
lua_tostring (L, -1));
lua_settop (L, 0);

Expand Down

0 comments on commit c4cb804

Please sign in to comment.