Skip to content

Commit c2f3163

Browse files
author
Dmitry Shmidt
committedMay 14, 2009
Fix compilation warning
1 parent dd4fc93 commit c2f3163

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎wpa_ctrl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ void wpa_ctrl_close(struct wpa_ctrl *ctrl)
153153
* event of crashes that prevented them from being removed as part
154154
* of the normal orderly shutdown.
155155
*/
156-
void wpa_ctrl_cleanup()
156+
void wpa_ctrl_cleanup(void)
157157
{
158158
DIR *dir;
159159
struct dirent entry;

‎wpa_ctrl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ int wpa_ctrl_get_fd(struct wpa_ctrl *ctrl);
187187
* event of crashes that prevented them from being removed as part
188188
* of the normal orderly shutdown.
189189
*/
190-
void wpa_ctrl_cleanup();
190+
void wpa_ctrl_cleanup(void);
191191
#endif /* ANDROID */
192192

193193
#ifdef CONFIG_CTRL_IFACE_UDP

0 commit comments

Comments
 (0)
Please sign in to comment.