sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit a069579f03cc3e24297f368b893dabf74367d411
parent d1335e5ce2a14ffd8e3e3161098d2263cccef1a7
Author: Michael Buch <michaelbuch12@gmail.com>
Date:   Sat, 30 Jan 2021 00:34:24 +0000

Fix argument order to calloc

Diffstat:
Mst.suckless.org/patches/copyurl/st-copyurl-0.8.4.diff | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/st.suckless.org/patches/copyurl/st-copyurl-0.8.4.diff b/st.suckless.org/patches/copyurl/st-copyurl-0.8.4.diff @@ -81,7 +81,7 @@ diff -up ../st-0.8.4/st.c ./st.c + colend = 0, /* column of last occurrence */ + passes = 0; /* how many rows have been scanned */ + -+ char *linestr = calloc(sizeof(Rune), term.col+1); ++ char *linestr = calloc(term.col+1, sizeof(Rune)); + char *c = NULL, + *match = NULL; +