diff options
author | Christopher Faylor <me@cgf.cx> | 2001-10-13 01:35:15 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-10-13 01:35:15 +0000 |
commit | bc6ed5498655ea0e2cc4f0748ad8311e803d5b71 (patch) | |
tree | d5aa1cd43a0d4af104f86cdfeeef6d21d8c291ae /winsup/cygwin/autoload.cc | |
parent | cb1826572ce94eabfa1e4b5e8737fad188a55048 (diff) | |
download | cygnal-bc6ed5498655ea0e2cc4f0748ad8311e803d5b71.tar.gz cygnal-bc6ed5498655ea0e2cc4f0748ad8311e803d5b71.tar.bz2 cygnal-bc6ed5498655ea0e2cc4f0748ad8311e803d5b71.zip |
* autoload.cc (wsock_init): Reorganize slightly to accomodate a new compiler.
Diffstat (limited to 'winsup/cygwin/autoload.cc')
-rw-r--r-- | winsup/cygwin/autoload.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/autoload.cc b/winsup/cygwin/autoload.cc index d1cbd59cc..5ae8e1c5a 100644 --- a/winsup/cygwin/autoload.cc +++ b/winsup/cygwin/autoload.cc @@ -244,7 +244,6 @@ wsock_init () extern WSADATA wsadata; struct func_info *func = (struct func_info *) __builtin_return_address (0); struct dll_info *dll = func->dll; - retchain ret; __asm__ (" \n\ .section .ws2_32_info \n\ @@ -293,6 +292,7 @@ wsock_init () movl $dll_chain1,4(%ebp) \n\ "); + volatile retchain ret; /* Set "arguments for dll_chain1. */ ret.low = (long) dll_func_load; ret.high = (long) func; |