Description cgo: Trivial output misalignment fix
Changes from:
struct {
...
}
*a = v;
a->r = ...
To:
struct {
...
} *a = v;
a->r = ...
Patch Set 1 #Patch Set 2 : code review 3902044: cgo: Trivial output misalignment fix #
MessagesTotal messages: 3
|