diff options
author | Tom Tromey <tromey@redhat.com> | 2002-12-10 21:24:47 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2002-12-10 21:24:47 +0000 |
commit | 35cfd2918460b88d19f1241fea0d8cc4f2cee284 (patch) | |
tree | 4d3db4a824c9ea14de3317e3d09b06ccc725a26d /libjava/include | |
parent | 40d81ee46b7a651f73c6c7fb492939a9a2fc4607 (diff) | |
download | gcc-35cfd2918460b88d19f1241fea0d8cc4f2cee284.zip gcc-35cfd2918460b88d19f1241fea0d8cc4f2cee284.tar.gz gcc-35cfd2918460b88d19f1241fea0d8cc4f2cee284.tar.bz2 |
win32.h: Fixed typo in "DISABLE_JAVA_NET".
* include/win32.h: Fixed typo in "DISABLE_JAVA_NET".
From Laurent Bardet <l.bardet@magic.fr>.
From-SVN: r60013
Diffstat (limited to 'libjava/include')
-rw-r--r-- | libjava/include/win32.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/include/win32.h b/libjava/include/win32.h index f05f30d..d4c0ab6 100644 --- a/libjava/include/win32.h +++ b/libjava/include/win32.h @@ -26,7 +26,7 @@ details. */ #define _Jv_platform_solib_prefix "" #define _Jv_platform_solib_suffix ".dll" -#ifndef DISBALE_JAVA_NET +#ifndef DISABLE_JAVA_NET // these errors cannot occur on Win32 #define ENOTCONN 0 @@ -36,7 +36,7 @@ details. */ #define ENOPROTOOPT 109 #endif -#endif // DISBALE_JAVA_NET +#endif // DISABLE_JAVA_NET extern void _Jv_platform_initialize (void); extern void _Jv_platform_initProperties (java::util::Properties*); @@ -48,7 +48,7 @@ _Jv_platform_close_on_exec (jint) // Ignore. } -#ifndef DISBALE_JAVA_NET +#ifndef DISABLE_JAVA_NET static inline int _Jv_socket (int domain, int type, int protocol) @@ -98,7 +98,7 @@ _Jv_read(int s, void *buf, int len) return ::recv (s, (char*) buf, len, 0); } -#endif /* DISBALE_JAVA_NET */ +#endif /* DISABLE_JAVA_NET */ #define HAVE_BACKTRACE |