summaryrefslogtreecommitdiff
path: root/libyasm/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'libyasm/file.c')
-rw-r--r--libyasm/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libyasm/file.c b/libyasm/file.c
index fa225af0..128934a8 100644
--- a/libyasm/file.c
+++ b/libyasm/file.c
@@ -455,7 +455,7 @@ typedef struct incpath {
/*@owned@*/ char *path;
} incpath;
-STAILQ_HEAD(, incpath) incpaths = STAILQ_HEAD_INITIALIZER(incpaths);
+STAILQ_HEAD(incpath_head, incpath) incpaths = STAILQ_HEAD_INITIALIZER(incpaths);
FILE *
yasm_fopen_include(const char *iname, const char *from, const char *mode,