diff options
author | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2013-11-25 14:09:53 +0100 |
---|---|---|
committer | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2013-11-25 14:09:53 +0100 |
commit | 53474391bcf2122921d27356a70e6da3c78d058e (patch) | |
tree | 55b32e1e20f5b1d7a8aae94a4b90ac0383beaf58 | |
parent | 1fe0a5f39a8755da4cd16e92f2ea00676d9ee3ca (diff) | |
download | st-53474391bcf2122921d27356a70e6da3c78d058e.tar.gz st-53474391bcf2122921d27356a70e6da3c78d058e.tar.bz2 |
Fix stupid bug in tdefcolor returning -1 in unsigned function
k0ga misktook applying patch of others. Sorry guys!!!!
-rw-r--r-- | st.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -379,7 +379,7 @@ static void tsetdirtattr(int); static void tsetmode(bool, bool, int *, int); static void tfulldirt(void); static void techo(char *, int); -static uint32_t tdefcolor(int *, int *, int); +static int32_t tdefcolor(int *, int *, int); static void tselcs(void); static void tdeftran(char); static inline bool match(uint, uint); @@ -1666,7 +1666,7 @@ tdeleteline(int n) { tscrollup(term.c.y, n); } -uint32_t +int32_t tdefcolor(int *attr, int *npar, int l) { int32_t idx = -1; uint r, g, b; |