libwine: Don't try to use the preloader on non-i386.

This commit is contained in:
Alexandre Julliard 2008-12-11 20:39:05 +01:00
parent 324a803532
commit d2a426a6ab
1 changed files with 1 additions and 1 deletions

View File

@ -421,7 +421,7 @@ const char *wine_get_build_id(void)
/* exec a binary using the preloader if requested; helper for wine_exec_wine_binary */
static void preloader_exec( char **argv, int use_preloader )
{
#ifdef linux
#if defined(linux) && defined(__i386__)
if (use_preloader)
{
static const char preloader[] = "wine-preloader";