Explorar o código

Remove stupid assignation in memcpy()

Roberto E. Vargas Caballero %!s(int64=9) %!d(string=hai) anos
pai
achega
66556d9670
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      st.c

+ 2 - 2
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)