diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/xwininfo/xwininfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/xwininfo/xwininfo.c b/apps/xwininfo/xwininfo.c index de1e33e4c..59e09aff8 100644 --- a/apps/xwininfo/xwininfo.c +++ b/apps/xwininfo/xwininfo.c @@ -1837,7 +1837,7 @@ get_net_wm_name (xcb_connection_t *gnwn_dpy, xcb_window_t win) #define UTF8_SHORT_TAIL 3 #define UTF8_LONG_TAIL 4 static int -is_valid_utf8 (const char *string, int len) +is_valid_utf8 (const char *string, size_t len) { unsigned long codepoint; int rem, i; @@ -1958,7 +1958,7 @@ get_friendly_name (const char *string, const char *prefix) const char *name_start = string; char *lowered_name, *n; Bool first = True; - int prefix_len = strlen (prefix); + size_t prefix_len = strlen (prefix); if (strncmp (name_start, prefix, prefix_len) == 0) { name_start += prefix_len; |