Change empfile members postread() and prewrite() to return void

Callers ignore the value, and callees always return 1.  Pointless.
This commit is contained in:
Markus Armbruster 2008-08-31 14:44:16 -04:00
parent e438f6b4cd
commit bf436a4498
8 changed files with 35 additions and 38 deletions

View file

@ -41,8 +41,8 @@
struct fileinit {
int ef_type;
int (*postread) (int, void *);
int (*prewrite) (int, void *);
void (*postread) (int, void *);
void (*prewrite) (int, void *);
};
static struct fileinit fileinit[] = {