From c656035e67c0a565375138e233f4dc394747ae97 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 22 Mar 2004 18:06:26 +0200 Subject: [PATCH] sync0sync.c: Fix typo __NETWARE --> __NETWARE__ in mutex creation innobase/sync/sync0sync.c: Fix typo __NETWARE --> __NETWARE__ in mutex creation --- innobase/sync/sync0sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/innobase/sync/sync0sync.c b/innobase/sync/sync0sync.c index 4f5d27bcc7c..fc312a65942 100644 --- a/innobase/sync/sync0sync.c +++ b/innobase/sync/sync0sync.c @@ -180,7 +180,7 @@ mutex_create_func( char* cfile_name, /* in: file name where created */ ulint cline) /* in: file line where created */ { -#if defined(_WIN32) && defined(UNIV_CAN_USE_X86_ASSEMBLER) && !defined(__NETWARE) +#if defined(_WIN32) && defined(UNIV_CAN_USE_X86_ASSEMBLER) && !defined(__NETWARE__) mutex_reset_lock_word(mutex); #else os_fast_mutex_init(&(mutex->os_fast_mutex));