Skip to content

Commit

Permalink
Bug fix yshui#195: Pointer incompatibility with libconfig-1.3*
Browse files Browse the repository at this point in the history
Fix pointer incompatibility with libconfig-1.3*. Thanks to
sstewartgallus for reporting. (yshui#195)
  • Loading branch information
richardgv committed May 10, 2014
1 parent 349af12 commit bb55706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compton.c
Original file line number Diff line number Diff line change
Expand Up @@ -5458,7 +5458,7 @@ parse_config(session_t *ps, struct options_tmp *pcfgtmp) {
&& !parse_conv_kern_lst(ps, sval, ps->o.blur_kerns, MAX_BLUR_PASS))
exit(1);
// --resize-damage
config_lookup_int(&cfg, "resize-damage", &ps->o.resize_damage);
lcfg_lookup_int(&cfg, "resize-damage", &ps->o.resize_damage);
// --glx-no-stencil
lcfg_lookup_bool(&cfg, "glx-no-stencil", &ps->o.glx_no_stencil);
// --glx-copy-from-front
Expand Down

0 comments on commit bb55706

Please sign in to comment.