forked from len0rd/rockbox
Fix some plugins that use NULL instead of -1 when not using a voice id in struct opt_items. Change as many '#define NULL 0' to '#define NULL ((void*)0)' as grep would find - somewehere the former is still hiding it seems. :\
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15117 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
887ff33f2e
commit
0b0c23ff13
6 changed files with 87 additions and 87 deletions
|
@ -17,7 +17,7 @@ extern "C" {
|
|||
#include <stddef.h>
|
||||
|
||||
#ifndef NULL
|
||||
#define NULL 0
|
||||
#define NULL ((void*)0)
|
||||
#endif
|
||||
|
||||
#define EXIT_FAILURE 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue