summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/tools/imgtool/library.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/tools/imgtool/library.c')
-rw-r--r--src/mess/tools/imgtool/library.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/tools/imgtool/library.c b/src/mess/tools/imgtool/library.c
index a564f37dd38..b0fa99d648d 100644
--- a/src/mess/tools/imgtool/library.c
+++ b/src/mess/tools/imgtool/library.c
@@ -12,7 +12,7 @@
#include "library.h"
#include "pool.h"
-struct _imgtool_library
+struct imgtool_library
{
object_pool *pool;
imgtool_module *first;
@@ -32,7 +32,7 @@ imgtool_library *imgtool_library_create(void)
goto error;
/* allocate the main structure */
- library = (imgtool_library *)pool_malloc_lib(pool, sizeof(struct _imgtool_library));
+ library = (imgtool_library *)pool_malloc_lib(pool, sizeof(imgtool_library));
if (!library)
goto error;