mirror of
https://github.com/aaru-dps/fstester.git
synced 2025-12-16 19:24:39 +00:00
Fix typo in Linux definition name.
This commit is contained in:
@@ -96,7 +96,7 @@ endif()
|
||||
|
||||
if(HAVE_STATFS_TYPE)
|
||||
message("-- statfs has f_type member")
|
||||
add_sub_definitions(USE_STATFS_FLAGS)
|
||||
add_sub_definitions(USE_STATFS_TYPE)
|
||||
endif()
|
||||
|
||||
if(HAVE_STATFS_FLAGS)
|
||||
|
||||
@@ -105,7 +105,7 @@ void GetVolumeInfo(const char* path, size_t* clusterSize)
|
||||
|
||||
#ifdef USE_STATFS_FTYPENAME
|
||||
log_write("\tFilesystem: %s\n", buf.f_fstypename);
|
||||
#elif defined(HAVE_STATFS_TYPE)
|
||||
#elif defined(USE_STATFS_TYPE)
|
||||
log_write("\tFilesystem: ");
|
||||
switch(buf.f_type)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user