Merge pull request #9 from Techwizz-somboo/master

Initalize d to avoid a warning
This commit is contained in:
MattKC 2023-09-26 20:46:19 -07:00 committed by GitHub
commit 8fae9087b0
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: