Skip to content

Commit

Permalink
fix casing error in linux native code
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Nov 10, 2024
1 parent 789a8b5 commit 47e41c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/linux/fs_meta.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ void GetVolumeMetadataWorker::Execute() {
metadata.size = blockSize * vfs.f_blocks;
metadata.available = blockSize * vfs.f_bavail;
metadata.used = metadata.size - (blockSize * vfs.f_bfree);
metadata.filesystem = fstype;
metadata.fileSystem = fstype;

// Check if it's a remote filesystem
metadata.remote = isNetworkFileSystem(fstype.c_str());
Expand Down
2 changes: 1 addition & 1 deletion src/linux/fs_meta.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class GetVolumeMetadataWorker : public Napi::AsyncWorker {

private:
struct VolumeMetadata {
std::string filesystem;
std::string fileSystem;
std::string label;
std::string uuid;
std::string remoteHost;
Expand Down

0 comments on commit 47e41c5

Please sign in to comment.