Skip to content

Commit

Permalink
Remove duplicate check of MSWIN_XBOX1 in os_dep.c
Browse files Browse the repository at this point in the history
(fix of commit ad34094)

Issue #173 (bdwgc).

* os_dep.c [!MSWIN_XBOX1 && !MSWINCE && USE_WINALLOC]: Do not check
whether MSWIN_XBOX1 is defined.
  • Loading branch information
ivmai committed Aug 6, 2022
1 parent f95d88a commit d67b065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion os_dep.c
Original file line number Diff line number Diff line change
Expand Up @@ -2392,7 +2392,7 @@ void * os2_alloc(size_t bytes)
return(result);
}

#elif (defined(USE_WINALLOC) && !defined(MSWIN_XBOX1)) || defined(CYGWIN32)
#elif defined(USE_WINALLOC) /* && !MSWIN_XBOX1 */ || defined(CYGWIN32)

# ifdef USE_GLOBAL_ALLOC
# define GLOBAL_ALLOC_TEST 1
Expand Down

0 comments on commit d67b065

Please sign in to comment.