diff options
author | Christoph Lohmann <20h@r-36.net> | 2012-09-05 21:54:52 +0200 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2012-09-05 21:54:52 +0200 |
commit | a683de536474e0870d663af7122ccad3d863379d (patch) | |
tree | 2a2c29c91fd83e53d5fcf8a9d65e10f4d29d731a | |
parent | d0973d19daa9f1c5807de2bcd5da7d726470194a (diff) | |
download | st-a683de536474e0870d663af7122ccad3d863379d.tar.gz st-a683de536474e0870d663af7122ccad3d863379d.tar.bz2 |
Forcing the parameter limit to xcopy() and selpaste(). Thanks to Rob Pilling.
-rw-r--r-- | st.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -291,7 +291,7 @@ static void ttywrite(const char *, size_t); static void xdraws(char *, Glyph, int, int, int, int); static void xhints(void); static void xclear(int, int, int, int); -static void xcopy(); +static void xcopy(void); static void xdrawcursor(void); static void xinit(void); static void xloadcols(void); @@ -316,7 +316,7 @@ static void selrequest(XEvent *); static void selinit(void); static inline bool selected(int, int); static void selcopy(void); -static void selpaste(); +static void selpaste(void); static void selscroll(int, int); static int utf8decode(char *, long *); |