Make 2 more functions static

pull/283/head
Michael Ortmann 2020-07-15 02:02:57 +02:00
parent 198eccde24
commit 526c743369
1 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ bool skip_repeated_empty_password = false;
* Decrements i to point to the previous unicode glyph
*
*/
void u8_dec(char *s, int *i) {
static void u8_dec(char *s, int *i) {
(void)(isutf(s[--(*i)]) || isutf(s[--(*i)]) || isutf(s[--(*i)]) || --(*i));
}
@ -613,7 +613,7 @@ static void process_xkb_event(xcb_generic_event_t *gevent) {
* and also redraw the image, if any.
*
*/
void handle_screen_resize(void) {
static void handle_screen_resize(void) {
xcb_get_geometry_cookie_t geomc;
xcb_get_geometry_reply_t *geom;
geomc = xcb_get_geometry(conn, screen->root);