Browse Source

Remove stupid assignation in memcpy()

master
Roberto E. Vargas Caballero 8 years ago
parent
commit
66556d9670
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      st.c

+ 2
- 2
st.c View File

@ -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)


Loading…
Cancel
Save