Initalize d to avoid a warning

This commit is contained in:
Techwizz-somboo 2023-09-26 21:27:03 -06:00 committed by GitHub
parent c1f5188946
commit 8cfd15ab46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -112,7 +112,7 @@ void File::seek(File::pos_t p, SeekMode s)
SetFilePointer(m_Handle, low, &high, m);
#else
std::ios::seekdir d;
std::ios::seekdir d = std::ios::beg;
switch (s) {
case SeekStart: