paleofetch

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 9151f7f9c5ca418a783725508104354110077d24
parent 7094f99aca68cdc7f02c0378e231932ec7e13e37
Author: sam-barr <samfbarr@outlook.com>
Date:   Fri, 24 Apr 2020 14:11:05 -0500

Merge pull request #40 from dwzg/macro_fix

Fix wrong string length in REMOVE macro
Diffstat:
Mpaleofetch.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/paleofetch.h b/paleofetch.h @@ -20,4 +20,4 @@ char *get_title(), *spacer(); #define SPACER {"", spacer, false}, -#define REMOVE(A) { (A), sizeof(A) } +#define REMOVE(A) { (A), sizeof(A) - 1}