aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authorokan2016-12-02 16:50:19 +0000
committerokan2016-12-02 16:50:19 +0000
commita3c41f6d0cb1c197c53c64cc84eef68b1b3a6112 (patch)
tree81ba10b4c5b2b7855dd9eaff7029549eb6a17545 /conf.c
parent29118bc5f2d3da806407827df4b689bd80838a6f (diff)
downloadcwm-a3c41f6d0cb1c197c53c64cc84eef68b1b3a6112.tar.gz
use the correct type
Diffstat (limited to '')
-rw-r--r--conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf.c b/conf.c
index 522c239..776d800 100644
--- a/conf.c
+++ b/conf.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: conf.c,v 1.226 2016/12/01 18:17:52 okan Exp $
+ * $OpenBSD: conf.c,v 1.227 2016/12/02 16:50:19 okan Exp $
*/
#include <sys/types.h>
@@ -59,7 +59,7 @@ static const char *color_binds[] = {
static const struct {
const char *tag;
void (*handler)(void *, union arg *, enum xev);
- int context;
+ enum context context;
union arg argument;
} name_to_func[] = {
{ "window-menu-label", kbfunc_menu_client_label, CWM_CONTEXT_CC, {0} },