summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm>2015-11-14 10:57:59 +0000
committernicm <nicm>2015-11-14 10:57:59 +0000
commitdab63b029e94dcabe335abf7f89c66c28486a542 (patch)
treebde69e72dbb2bad2c6ec306602ac1f8ac203d924
parent64333e3ef89047d1c09cdc5053af647dbd8344da (diff)
Couple of assignments to remove compiler warnings.
-rw-r--r--key-string.c1
-rw-r--r--tty-keys.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/key-string.c b/key-string.c
index 81d014ac..ad7cbf50 100644
--- a/key-string.c
+++ b/key-string.c
@@ -176,6 +176,7 @@ key_string_lookup_string(const char *string)
if (utf8_open(&ud, (u_char)*string)) {
if (strlen(string) != ud.size)
return (KEYC_NONE);
+ more = 1;
for (i = 1; i < ud.size; i++)
more = utf8_append(&ud, (u_char)string[i]);
if (more != 0)
diff --git a/tty-keys.c b/tty-keys.c
index 4bdc061a..cc6b934a 100644
--- a/tty-keys.c
+++ b/tty-keys.c
@@ -546,6 +546,7 @@ first_key:
goto discard_key;
goto partial_key;
}
+ more = 1;
for (i = 1; i < size; i++)
more = utf8_append(&ud, (u_char)buf[i]);
if (more != 0)