From 68a7420ba433da16f89035e2ec77de21e8c7a6a3 Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Thu, 10 Oct 2013 16:19:10 +0900 Subject: [PATCH] remove argument name from prototype --- include/picrin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/picrin.h b/include/picrin.h index 83663fa7..fea544d7 100644 --- a/include/picrin.h +++ b/include/picrin.h @@ -5,6 +5,6 @@ typedef struct { } pic_state; pic_state *pic_open(); -void pic_close(pic_state *pic); +void pic_close(pic_state *); #endif