Re: [PATCH v3] remote-curl: send Accept-Language header to server
From: Junio C Hamano <hidden> Date: 2022-06-13 22:15:23
Junio C Hamano [off-list ref] writes:
+#define RPC_STATE_INIT { 0, }
Make it
#define RPC_STATE_INIT { 0 }
Curiously, the former form with trailing comma makes sparse unhappy,
while it seems that the latter is taken as a special form "idiom".