summaryrefslogtreecommitdiff
path: root/usr.bin/ctfconv/ctfconv.c
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2017-08-11 16:55:47 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2017-08-11 16:55:47 +0000
commit4926e9f63bdc9eca372060265085a6b5e14788ae (patch)
tree0bcee8a91807a25debec45bc1b13a3df66571ef7 /usr.bin/ctfconv/ctfconv.c
parent3c97015497ad5082d586b345924b82053cb31624 (diff)
Fix nested declaration inside union or struct.
Diffstat (limited to 'usr.bin/ctfconv/ctfconv.c')
-rw-r--r--usr.bin/ctfconv/ctfconv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ctfconv/ctfconv.c b/usr.bin/ctfconv/ctfconv.c
index 7fa2a7dd9fe..c72503c1830 100644
--- a/usr.bin/ctfconv/ctfconv.c
+++ b/usr.bin/ctfconv/ctfconv.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ctfconv.c,v 1.3 2017/08/11 16:28:29 mpi Exp $ */
+/* $OpenBSD: ctfconv.c,v 1.4 2017/08/11 16:55:46 mpi Exp $ */
/*
* Copyright (c) 2016-2017 Martin Pieuchot
@@ -383,7 +383,7 @@ dump_type(struct itype *it)
TAILQ_FOREACH(im, &it->it_members, im_next) {
printf("\t%s type=%u off=%zd\n",
(im_name(im) == NULL) ? "unknown" : im_name(im),
- im->im_refp->it_idx, im->im_off);
+ im->im_refp ? im->im_refp->it_idx : 0, im->im_off);
}
printf("\n");
break;