aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/file_reader.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/file_reader.hpp b/src/file_reader.hpp
index f601cee..e12e591 100644
--- a/src/file_reader.hpp
+++ b/src/file_reader.hpp
@@ -57,11 +57,11 @@ public:
enum relTo
{
//! At begin position
- SET = 0,
+ SET = SEEK_SET,
//! At current position
- CUR = 1,
+ CUR = SEEK_CUR,
//! At end position
- END = 2
+ END = SEEK_END
};
/**