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:
Daniel Stenberg 2002-05-07 12:34:45 +00:00
parent e3a12d34ea
commit 7488832c7e

View file

@ -41,7 +41,7 @@ struct x11_dirent *x11_readdir(MYDIR *dir)
struct dirent *x11 = (readdir)(dir->dir);
if(!x11)
return NULL;
return (struct x11_dirent *)0;
strcpy(secret.d_name, x11->d_name);