X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=second%2Ffs_iso.c;h=e1435490bd0b74d2d85cdbed45d248b5dc088d4c;hb=678d83ff8608534ece0f1e912eddedef4f0bb67a;hp=50479a9a1249e041933f2be027241752d326d3cd;hpb=8d5a42062f8b88eaea91434e53973ce9f55589d9;p=yaboot.git diff --git a/second/fs_iso.c b/second/fs_iso.c index 50479a9..e143549 100644 --- a/second/fs_iso.c +++ b/second/fs_iso.c @@ -39,11 +39,11 @@ static int iso_close( struct boot_file_t* file); struct fs_t iso_filesystem = { - "iso9660", - iso_open, - iso_read, - iso_seek, - iso_close + "iso9660", + iso_open, + iso_read, + iso_seek, + iso_close }; static int @@ -52,7 +52,7 @@ iso_open( struct boot_file_t* file, struct partition_t* part, const char* file_name) { - return FILE_ERR_BAD_FSYS; + return FILE_ERR_BAD_FSYS; } static int @@ -60,18 +60,25 @@ iso_read( struct boot_file_t* file, unsigned int size, void* buffer) { - return FILE_ERR_BAD_FSYS; + return FILE_ERR_BAD_FSYS; } static int iso_seek( struct boot_file_t* file, unsigned int newpos) { - return FILE_ERR_BAD_FSYS; + return FILE_ERR_BAD_FSYS; } static int iso_close( struct boot_file_t* file) { - return 0; + return 0; } + +/* + * Local variables: + * c-file-style: "k&r" + * c-basic-offset: 5 + * End: + */