Typo
[paraslash.git] / write_common.c
index e496c26ca7c547fe185e5f7df1156c230bcaaec1..e76d7f46a537a1c00f47dc055506d39e13cf9bc2 100644 (file)
@@ -35,7 +35,6 @@ int wng_write(struct writer_node_group *g, char *buf, size_t *loaded)
                need_more_writes = 0;
                FOR_EACH_WRITER_NODE(i, g) {
                        size_t w = g->written[i];
-                       unsigned char *p = buf + w;
                        int bytes_to_write;
                        struct writer_node *wn = &g->writer_nodes[i];
                        if (!i)
@@ -48,7 +47,7 @@ int wng_write(struct writer_node_group *g, char *buf, size_t *loaded)
                                continue;
                        bytes_to_write = PARA_MIN(wn->chunk_bytes,
                                *loaded - w);
-                       ret = wn->writer->write(p, bytes_to_write, wn);
+                       ret = wn->writer->write(buf + w, bytes_to_write, wn);
                        if (ret < 0)
                                goto out;
                        if (ret != bytes_to_write)