]> Cypherpunks repositories - gostls13.git/commitdiff
libmach: fix whitespace.
authorNigel Tao <nigeltao@golang.org>
Sun, 12 Sep 2010 06:40:31 +0000 (16:40 +1000)
committerNigel Tao <nigeltao@golang.org>
Sun, 12 Sep 2010 06:40:31 +0000 (16:40 +1000)
R=rsc, r
CC=golang-dev
https://golang.org/cl/2149046

src/libmach/linux.c

index e4e2fd5c7bd344092181a715ff2ecccd7e56ce76..30b4da240537242a1b9cd82f81a6f198087a3901 100644 (file)
@@ -199,7 +199,7 @@ attachthread(int pid, int tid, int *new, int newstate)
        t = malloc(sizeof *t);
        if(t == nil)
                return nil;
-        memset(t, 0, sizeof *t);
+       memset(t, 0, sizeof *t);
 
        thr[nthr++] = t;
        if(pid == 0 && nthr > 0)