summaryrefslogtreecommitdiff
path: root/zen/file_id_def.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2017-04-20 17:05:29 -0600
committerDaniel Wilhelm <shieldwed@outlook.com>2017-04-20 17:05:29 -0600
commit94eeff901cb5f3d435840a662b4438c631127183 (patch)
tree7a4e7ed4627fb2ddfa3ef5176b7b35981b52c51f /zen/file_id_def.h
parentnormalize most lineendings (diff)
downloadFreeFileSync-94eeff901cb5f3d435840a662b4438c631127183.tar.gz
FreeFileSync-94eeff901cb5f3d435840a662b4438c631127183.tar.bz2
FreeFileSync-94eeff901cb5f3d435840a662b4438c631127183.zip
9.0
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