diff gui/cfg.h @ 34561:f744357e94bd

Make cfg_read() and cfg_write() void functions. There is no error handling other than instantly exiting MPlayer and the return values aren't used anywhere.
author ib
date Fri, 03 Feb 2012 13:57:10 +0000
parents c28c967e40e9
children ac6b38cd0d45
line wrap: on
line diff
--- a/gui/cfg.h	Fri Feb 03 13:38:42 2012 +0000
+++ b/gui/cfg.h	Fri Feb 03 13:57:10 2012 +0000
@@ -90,7 +90,7 @@
 extern char *fsHistory[5];
 
 int cfg_gui_include(m_option_t *conf, const char *filename);
-int cfg_read(void);
-int cfg_write(void);
+void cfg_read(void);
+void cfg_write(void);
 
 #endif /* MPLAYER_GUI_CFG_H */