Fix prototypes.

svn path=/trunk/; revision=53917
This commit is contained in:
Gerald Combs 2013-12-10 21:27:09 +00:00
parent 4cd6759755
commit 7b4b912fb7
2 changed files with 4 additions and 4 deletions

View File

@ -242,11 +242,11 @@ decode_clear_all(void)
/* XXX - We might want to switch this to a UAT */
FILE *
decode_as_open() {
decode_as_open(void) {
char *pf_dir_path;
char *daf_path;
FILE *da_file;
if (create_persconffile_dir(&pf_dir_path) == -1) {
simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
"Can't create directory\n\"%s\"\nfor recent file: %s.", pf_dir_path,

View File

@ -70,13 +70,13 @@ void decode_build_reset_list (const gchar *table_name, ftenum_t selector_type,
void decode_clear_all(void);
/** Open the "decode_as_entries" configuration file and write its header.
*
*
* Entries should be written with decode_as_write_entry(). The file should
* be closed with fclose().
*
* @return A valid FILE pointer on success, NULL on failure.
*/
FILE *decode_as_open();
FILE *decode_as_open(void);
/** Write an entry to the "decode_as_entries" file.
*