Skip to content

Commit

Permalink
Update Utilities/StorageFactory/src/LocalFileSystem.cc
Browse files Browse the repository at this point in the history
Co-authored-by: Matti Kortelainen <[email protected]>
  • Loading branch information
smuzaffar and makortel authored Oct 7, 2024
1 parent 3f2c77c commit 49c17d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utilities/StorageFactory/src/LocalFileSystem.cc
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ LocalFileSystem::FSInfo *LocalFileSystem::initFSInfo(void *arg) {
i->fsname = static_cast<char *>(memcpy(p += infolen, m->mnt_fsname, fslen));
i->type = static_cast<char *>(memcpy(p += fslen, m->mnt_type, typelen));
i->dir = static_cast<char *>(memcpy(p += typelen, m->mnt_dir, dirlen));
[[clang::suppress]] i->origin = static_cast<char *>(memcpy(p += dirlen, m->mnt_fsname, originlen));
i->origin = static_cast<char *>(memcpy(p + dirlen, m->mnt_fsname, originlen));
i->dev = -1;
i->fstype = -1;
i->freespc = 0;
Expand Down

0 comments on commit 49c17d9

Please sign in to comment.