From: Ian Lance Taylor Date: Tue, 5 Aug 2014 03:29:36 +0000 (-0700) Subject: runtime: only use a single variable in USED X-Git-Tag: go1.4beta1~958 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6c007bb065dbbf0db878c68221d302f49b3e8350;p=gostls13.git runtime: only use a single variable in USED The gccgo version of USED only accepts a single variable, so this simplifies merging. LGTM=minux, dave R=golang-codereviews, minux, dave CC=golang-codereviews https://golang.org/cl/115630043 --- diff --git a/src/pkg/runtime/netpoll_epoll.c b/src/pkg/runtime/netpoll_epoll.c index 9ea5e1a595..a0ae7df310 100644 --- a/src/pkg/runtime/netpoll_epoll.c +++ b/src/pkg/runtime/netpoll_epoll.c @@ -55,7 +55,8 @@ runtime·netpollclose(uintptr fd) void runtime·netpollarm(PollDesc* pd, int32 mode) { - USED(pd, mode); + USED(pd); + USED(mode); runtime·throw("unused"); }