diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-11-26 22:12:54 +0100 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-11-26 22:12:54 +0100 |
commit | 41a4497ecfa66c1dbc65202ae80542c18c5d7793 (patch) | |
tree | 75ea42e9d785a1f0f3382dcc5d7b1334fed5bf59 /st.c | |
parent | 00ba6969f863c75536910a0138b5161bbd0638c9 (diff) | |
parent | eaf38bf310a3c7850df2444fcdd77683ab8e4dc2 (diff) | |
download | st-41a4497ecfa66c1dbc65202ae80542c18c5d7793.tar.gz st-41a4497ecfa66c1dbc65202ae80542c18c5d7793.tar.bz2 |
merge.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,7 +23,7 @@ #if defined(__linux) #include <pty.h> -#elif defined(__OpenBSD__) || defined(__NetBSD__) +#elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__) #include <util.h> #elif defined(__FreeBSD__) || defined(__DragonFly__) #include <libutil.h> @@ -405,7 +405,7 @@ bpress(XEvent *e) { void selcopy(void) { char *str, *ptr; - int ls, x, y, sz, sl; + int x, y, sz, sl, ls = 0; if(sel.bx == -1) str = NULL; |