From 0df345e1da10b989de4105c983bf968f68c29e0f Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 20 Feb 2020 18:37:19 +0200 Subject: [PATCH] sowm: Fix compiler warning --- sowm.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sowm.h b/sowm.h index 80dad43..455ed93 100644 --- a/sowm.h +++ b/sowm.h @@ -53,4 +53,5 @@ void win_prev(const Arg arg); void win_next(const Arg arg); void win_to_ws(const Arg arg); void ws_go(const Arg arg); -int xerror() { return 0; } + +static int xerror() { return 0; }