commit 66556d967028a0b770e9bfcb9667389a6e994a58
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Fri Apr 15 07:58:26 2016 +0200
Commit:     Roberto E. Vargas Caballero <[email protected]>
CommitDate: Fri Apr 15 07:58:26 2016 +0200

    Remove stupid assignation in memcpy()

diff --git a/st.c b/st.c
index 839136d..27536d2 100644
--- a/st.c
+++ b/st.c
@@ -1404,9 +1404,9 @@ stty(void)
                if ((n = strlen(s)) > siz-1)
                        die("stty parameter length too long\n");
                *q++ = ' ';
-               q = memcpy(q, s, n);
+               memcpy(q, s, n);
                q += n;
-               siz-= n + 1;
+               siz -= n + 1;
        }
        *q = '\0';
        if (system(cmd) != 0)

Reply via email to