Commit 1833bee4 authored by Andreas Schmidt's avatar Andreas Schmidt
Browse files

Fix indexing.

parent b10cd23a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -119,7 +119,7 @@ int main(int argc, char **argv) {
        sprintf(buf, "%10d", j);
		memcpy(buf + 20, &now, sizeof(struct timespec));

        _send(s, buf, sizeof(buf));
        _send(s, buf, buffer_size * sizeof(char));

        j++;
    }