Skip to content

Commit

Permalink
bug name
Browse files Browse the repository at this point in the history
  • Loading branch information
esheldon committed Jun 18, 2024
1 parent 3e1c353 commit 4bec61e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion esutil/recfile/records.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static int is_python_string(const PyObject* obj)

int myfseeko(FILE *stream, off_t offset, int origin) {
#ifdef _WIN32
return __fseeki64(stream, offset, origin);
return _fseeki64(stream, offset, origin);
#else
return fseeko(stream, offset, origin);
#endif
Expand Down
1 change: 0 additions & 1 deletion esutil/recfile/records.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#include <sstream>
#include <stdexcept>
#include <stdint.h>
#include <stdio.h>
#include "numpy/arrayobject.h"

#ifndef _readfields_2_h
Expand Down

0 comments on commit 4bec61e

Please sign in to comment.