From 9240ce3fac630f1eb1e8ab5c94391e717a661fd5 Mon Sep 17 00:00:00 2001 From: Ashish Kumar Yadav Date: Wed, 10 Feb 2021 21:52:19 +0530 Subject: [PATCH] changed length from int to size_t --- dwmblocks/block.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dwmblocks/block.h b/dwmblocks/block.h index 002eafd..8176ffd 100644 --- a/dwmblocks/block.h +++ b/dwmblocks/block.h @@ -3,7 +3,7 @@ typedef struct { char *const pathc; const int interval; const int signal; - int length; char curtext[CMDOUTLENGTH + 1 + DELIMITERLENGTH]; char prvtext[CMDOUTLENGTH + 1]; + size_t length; } Block;