fileio_t -> struct fileio

Remove useless structure typedef.
This commit is contained in:
Zachary T Welch
2009-11-13 03:08:29 -08:00
parent f59ec2043b
commit 9f212b01be
11 changed files with 40 additions and 41 deletions
+1 -1
View File
@@ -622,7 +622,7 @@ COMMAND_HANDLER(lpc2900_handle_read_custom_command)
target_write_u32( target, FCTR, FCTR_FS_CS | FCTR_FS_WEB );
/* Try and open the file */
fileio_t fileio;
struct fileio fileio;
const char *filename = args[1];
int ret = fileio_open( &fileio, filename, FILEIO_WRITE, FILEIO_BINARY );
if( ret != ERROR_OK )