diff options
Diffstat (limited to 'src/store.cpp')
-rw-r--r-- | src/store.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store.cpp b/src/store.cpp index 669fb9c..55f3026 100644 --- a/src/store.cpp +++ b/src/store.cpp @@ -68,7 +68,7 @@ int Store::open(const char *name) int i; STORE_ASSERT(m_state==Init); if (m_file) return 0; // already open - m_file = fopen(name,"w+b"); + m_file = portable_fopen(name,"w+b"); if (m_file==0) return -1; // first block serves as header, so offset=0 can be used as the end of the list. |