Skip to content

Commit 8d375c5

Browse files
committed
fixup??? mingw: add a cache below mingw's lstat and dirent implementations
Fix a typo. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 636bab6 commit 8d375c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compat/win32/fscache.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ static int xwcstoutfn(char *utf, int utflen, const wchar_t *wcs, int wcslen)
184184
/*
185185
* Allocate and initialize an fsentry from a FILE_FULL_DIR_INFORMATION structure.
186186
*/
187-
static struct fsentry *fseentry_create_entry(struct fscache *cache,
187+
static struct fsentry *fsentry_create_entry(struct fscache *cache,
188188
struct fsentry *list,
189189
PFILE_FULL_DIR_INFORMATION fdata)
190190
{
@@ -311,7 +311,7 @@ static struct fsentry *fsentry_create_list(struct fscache *cache, const struct f
311311
di = (PFILE_FULL_DIR_INFORMATION)(cache->buffer);
312312
for (;;) {
313313

314-
*phead = fseentry_create_entry(cache, list, di);
314+
*phead = fsentry_create_entry(cache, list, di);
315315
phead = &(*phead)->next;
316316

317317
/* If there is no offset in the entry, the buffer has been exhausted. */

0 commit comments

Comments
 (0)