From 7db0d7ec6868c7375bb87de08be91b7ab81be395 Mon Sep 17 00:00:00 2001 From: Ashish Kumar Yadav Date: Thu, 11 Feb 2021 00:17:52 +0530 Subject: [PATCH] Fixed trivial bugs from last commit --- config.h | 2 +- dwmblocks.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.h b/config.h index f8c173b..66faa25 100644 --- a/config.h +++ b/config.h @@ -22,7 +22,7 @@ * don't remove DELIMITERENDCHAR at the end */ static const char delimiter[] = { ' ', ' ', ' ', DELIMITERENDCHAR }; -#include "dwmblocks/block.h" +#include "block.h" /* If interval of a block is set to 0, the block will only be updated once at startup. diff --git a/dwmblocks.c b/dwmblocks.c index efe1c58..3172a05 100644 --- a/dwmblocks.c +++ b/dwmblocks.c @@ -14,7 +14,7 @@ #define DELIMITERLENGTH sizeof delimiter -#include "../config.h" +#include "config.h" static void buttonhandler(int sig, siginfo_t *info, void *ucontext); static void cleanup();