aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2014-04-02 09:26:28 +0200
committerChristoph Lohmann <20h@r-36.net>2014-04-02 09:26:28 +0200
commit6f4cfa5136d354f3901871b71e460ba9f0f182a3 (patch)
tree7936f996e497b4044689fb9742d457ef5c7ebdde
parent672e4e4b03d8987103020d399b2c05c95a9ea2f8 (diff)
downloadst-patched-6f4cfa5136d354f3901871b71e460ba9f0f182a3.tar.bz2
st-patched-6f4cfa5136d354f3901871b71e460ba9f0f182a3.tar.xz
st-patched-6f4cfa5136d354f3901871b71e460ba9f0f182a3.zip
Fixing a compiler warning with the assignment.
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index d58af7d..a4f467d 100644
--- a/st.c
+++ b/st.c
@@ -1257,7 +1257,7 @@ ttyread(void) {
1257 /* process every complete utf8 char */ 1257 /* process every complete utf8 char */
1258 buflen += ret; 1258 buflen += ret;
1259 ptr = buf; 1259 ptr = buf;
1260 while(charsize = utf8decode(ptr, &unicodep, buflen)) { 1260 while((charsize = utf8decode(ptr, &unicodep, buflen))) {
1261 utf8encode(unicodep, s, UTF_SIZ); 1261 utf8encode(unicodep, s, UTF_SIZ);
1262 tputc(s, charsize); 1262 tputc(s, charsize);
1263 ptr += charsize; 1263 ptr += charsize;