diff options
Diffstat (limited to 'gcc/prefix.c')
-rw-r--r-- | gcc/prefix.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/prefix.c b/gcc/prefix.c index 88906731bfd..b7b162aac49 100644 --- a/gcc/prefix.c +++ b/gcc/prefix.c @@ -42,7 +42,7 @@ Boston, MA 02111-1307, USA. */ be considered a "key" and looked up as follows: -- If this is a Win32 OS, then the Registry will be examined for - an entry of "key" in + an entry of "key" in HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\<KEY> @@ -58,7 +58,7 @@ Boston, MA 02111-1307, USA. */ as an environment variable, whose value will be returned. Once all this is done, any '/' will be converted to DIR_SEPARATOR, - if they are different. + if they are different. NOTE: using resolve_keyed_path under Win32 requires linking with advapi32.dll. */ @@ -149,10 +149,10 @@ lookup_key (key) KEY_READ, ®_key); if (res != ERROR_SUCCESS) - { - reg_key = (HKEY) INVALID_HANDLE_VALUE; - return 0; - } + { + reg_key = (HKEY) INVALID_HANDLE_VALUE; + return 0; + } } size = 32; |