mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-10 13:45:10 -05:00
NULL is not defined when this compiles on Linux, let's avoid that for now
but we should fix it later git-svn-id: svn://svn.rockbox.org/rockbox/trunk@494 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e3a12d34ea
commit
7488832c7e
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ struct x11_dirent *x11_readdir(MYDIR *dir)
|
||||||
struct dirent *x11 = (readdir)(dir->dir);
|
struct dirent *x11 = (readdir)(dir->dir);
|
||||||
|
|
||||||
if(!x11)
|
if(!x11)
|
||||||
return NULL;
|
return (struct x11_dirent *)0;
|
||||||
|
|
||||||
strcpy(secret.d_name, x11->d_name);
|
strcpy(secret.d_name, x11->d_name);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue