diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-10-06 07:44:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:20:36 -0500 |
commit | 0f60472cb24b03b59114e5dc03918b75c652cb08 (patch) | |
tree | 8b207fded6f5899b18584423d0541e4a69d98f10 /source4 | |
parent | 08478f8f921662b98e0e8548df49e333742339ad (diff) | |
download | samba-0f60472cb24b03b59114e5dc03918b75c652cb08.tar.gz samba-0f60472cb24b03b59114e5dc03918b75c652cb08.tar.bz2 samba-0f60472cb24b03b59114e5dc03918b75c652cb08.zip |
r19116: fixed a checker warning
(This used to be commit 48243721df27fa68b3232d71b411fba1e0ab7010)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/replace/test/testsuite.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source4/lib/replace/test/testsuite.c b/source4/lib/replace/test/testsuite.c index fa5265f66f..d45304103f 100644 --- a/source4/lib/replace/test/testsuite.c +++ b/source4/lib/replace/test/testsuite.c @@ -231,14 +231,12 @@ static int test_opendir(void) extern int test_readdir_os2_delete(void); -static bool test_readdir(void) +static int test_readdir(void) { printf("testing readdir\n"); if (test_readdir_os2_delete() != 0) { return false; } - - /* FIXME */ return true; } @@ -400,7 +398,7 @@ bool torture_local_replace(struct torture_context *torture) ret &= test_vasprintf(); ret &= test_vsnprintf(); ret &= test_opendir(); - ret &= test_readdir() ; + ret &= test_readdir(); ret &= test_telldir(); ret &= test_seekdir(); ret &= test_dlopen(); |