summaryrefslogtreecommitdiff
path: root/src/helper/fileio.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/helper/fileio.h')
-rw-r--r--src/helper/fileio.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/helper/fileio.h b/src/helper/fileio.h
index a81f98ea..1dfff51e 100644
--- a/src/helper/fileio.h
+++ b/src/helper/fileio.h
@@ -44,7 +44,6 @@ enum fileio_type
FILEIO_BINARY,
};
-
enum fileio_access
{
FILEIO_READ, /* open for reading, position at beginning */
@@ -71,7 +70,7 @@ extern int fileio_close(fileio_t *fileio);
extern int fileio_open(fileio_t *fileio, char *url, enum fileio_access access, enum fileio_type type);
extern int fileio_read_u32(fileio_t *fileio, u32 *data);
extern int fileio_write_u32(fileio_t *fileio, u32 data);
-
+
#define ERROR_FILEIO_LOCATION_UNKNOWN (-1200)
#define ERROR_FILEIO_NOT_FOUND (-1201)
#define ERROR_FILEIO_OPERATION_FAILED (-1202)