summaryrefslogtreecommitdiff
path: root/zen/file_id_def.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/file_id_def.h')
-rwxr-xr-xzen/file_id_def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/file_id_def.h b/zen/file_id_def.h
index 3dcd21b9..8d429fbc 100755
--- a/zen/file_id_def.h
+++ b/zen/file_id_def.h
@@ -20,7 +20,7 @@ using VolumeId = decltype(impl::StatDummy::st_dev);
using FileIndex = decltype(impl::StatDummy::st_ino);
-struct FileId //always available on Linux, and *generally* available on Windows)
+struct FileId //always available on Linux, and *generally* available on Windows)
{
FileId() {}
FileId(VolumeId volId, FileIndex fIdx) : volumeId(volId), fileIndex(fIdx) {}
bgstack15