From afc89195aaca5e7bef2ba9aca578884b3416ce2c Mon Sep 17 00:00:00 2001 From: Ruben De Smet Date: Tue, 5 Jan 2016 19:19:09 +0100 Subject: [PATCH] Remove stub from posix.c:platform_get_drives --- src/platform/posix.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/platform/posix.c b/src/platform/posix.c index 39673ab99b..4ce5116756 100644 --- a/src/platform/posix.c +++ b/src/platform/posix.c @@ -538,10 +538,7 @@ void platform_enumerate_directories_end(int handle) } int platform_get_drives(){ - /* - return GetLogicalDrives(); - */ - STUB(); + // POSIX systems do not know drives. Return 0. return 0; }