diff options
author | Richard PALO <richard@NetBSD.org> | 2015-02-04 09:32:50 +0100 |
---|---|---|
committer | Dan McDonald <danmcd@omniti.com> | 2015-02-07 21:40:56 -0500 |
commit | ad0b1ea5d69a45fe23c434277599e315f29a5fca (patch) | |
tree | 70013d8a02a94adbdd998e946a09cf35c96516c7 /usr/src/tools/ctf/cvt/dwarf.c | |
parent | 97a9db610324e7db4393415018e0e737485a94cd (diff) | |
download | illumos-joyent-ad0b1ea5d69a45fe23c434277599e315f29a5fca.tar.gz |
5589 improper use of NULL in tools/ctf
Reviewed by: David Höppner <0xffea@gmail.com>
Reviewed by: Josef "Jeff" Sipek <jeffpc@josefsipek.net>
Approved by: Dan McDonald <danmcd@omniti.com>
Diffstat (limited to 'usr/src/tools/ctf/cvt/dwarf.c')
-rw-r--r-- | usr/src/tools/ctf/cvt/dwarf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/tools/ctf/cvt/dwarf.c b/usr/src/tools/ctf/cvt/dwarf.c index e261818d3a..5fdcd35e33 100644 --- a/usr/src/tools/ctf/cvt/dwarf.c +++ b/usr/src/tools/ctf/cvt/dwarf.c @@ -1714,7 +1714,7 @@ static const die_creator_t die_creators[] = { { DW_TAG_variable, DW_F_NOTDP, die_variable_create }, { DW_TAG_volatile_type, 0, die_volatile_create }, { DW_TAG_restrict_type, 0, die_restrict_create }, - { 0, NULL } + { 0, 0, NULL } }; static const die_creator_t * |