diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-07-31 21:16:51 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-07-31 21:16:51 +0000 |
commit | 660f11be541813be5f09fbaf44d8e7c6d5a5bbfe (patch) | |
tree | 1d133bdfc69d11fe81e769825adf3f680ee2f91e /feature_to_c.sh | |
parent | PPC: convert Uni-north to qdev: also fixes Mac99 machine crash (diff) | |
download | qemu-kvm-660f11be541813be5f09fbaf44d8e7c6d5a5bbfe.tar.gz qemu-kvm-660f11be541813be5f09fbaf44d8e7c6d5a5bbfe.tar.bz2 qemu-kvm-660f11be541813be5f09fbaf44d8e7c6d5a5bbfe.zip |
Fix Sparse warnings: "Using plain integer as NULL pointer"
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'feature_to_c.sh')
-rw-r--r-- | feature_to_c.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/feature_to_c.sh b/feature_to_c.sh index 53975ebca..dbf9f19c9 100644 --- a/feature_to_c.sh +++ b/feature_to_c.sh @@ -72,5 +72,5 @@ for input; do echo " { \"$basename\", $arrayname }," >> $output done -echo " { 0, 0 }" >> $output +echo " { (char *)0, (char *)0 }" >> $output echo "};" >> $output |