diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-05-20 18:06:55 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-05-20 18:06:55 +0000 |
commit | 6a4d67604e3bf62a35668b98cf87465d5be73ec3 (patch) | |
tree | 6f48ee558ae32b2a271ec40182fded8214a3342f /gcc/prefix.c | |
parent | fe1cc883cd4a3c6095219d60a72213bbd4ac5b81 (diff) | |
download | gcc-6a4d67604e3bf62a35668b98cf87465d5be73ec3.tar.gz |
params.c: Fix formatting.
* params.c: Fix formatting.
* params.h: Likewise.
* predict.c: Likewise.
* prefix.c: Likewise.
* print-rtl.c: Likewise.
* print-tree.c: Likewise.
* profile.c: Likewise.
From-SVN: r53670
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; |