summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/file/stdfile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/modules/file/stdfile.cpp')
-rw-r--r--src/osd/modules/file/stdfile.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/osd/modules/file/stdfile.cpp b/src/osd/modules/file/stdfile.cpp
index 988000b14c3..611775ab0ba 100644
--- a/src/osd/modules/file/stdfile.cpp
+++ b/src/osd/modules/file/stdfile.cpp
@@ -167,11 +167,11 @@ osd_file::error osd_file::remove(std::string const &filename)
// osd_get_physical_drive_geometry
//============================================================
-int osd_get_physical_drive_geometry(const char *filename, uint32_t *cylinders, uint32_t *heads, uint32_t *sectors, uint32_t *bps)
+bool osd_get_physical_drive_geometry(const char *filename, uint32_t *cylinders, uint32_t *heads, uint32_t *sectors, uint32_t *bps)
{
- // there is no standard way of doing this, so we always return FALSE, indicating
+ // there is no standard way of doing this, so we always return false, indicating
// that a given path is not a physical drive
- return FALSE;
+ return false;
}