diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2013-04-23 09:44:36 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2013-04-23 09:44:36 +0000 |
commit | 61522196c71593da09572fce9af9e0d7dad61bc3 (patch) | |
tree | 9bf74facd67974fa2f780d6ce68b14eb7a94e371 /winsup/cygwin/registry.cc | |
parent | 1875ee55d31d3673059373c8f9837bf98f93c713 (diff) | |
download | cygnal-61522196c71593da09572fce9af9e0d7dad61bc3.tar.gz cygnal-61522196c71593da09572fce9af9e0d7dad61bc3.tar.bz2 cygnal-61522196c71593da09572fce9af9e0d7dad61bc3.zip |
* Merge in cygwin-64bit-branch.
Diffstat (limited to 'winsup/cygwin/registry.cc')
-rw-r--r-- | winsup/cygwin/registry.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/winsup/cygwin/registry.cc b/winsup/cygwin/registry.cc index 8ea7f75b7..632260aae 100644 --- a/winsup/cygwin/registry.cc +++ b/winsup/cygwin/registry.cc @@ -238,7 +238,7 @@ get_registry_hive_path (PCWSTR name, PWCHAR path) NULL, NULL); if (!NT_SUCCESS (status) || buf.Length == 0) { - debug_printf ("ProfileImagePath for %W not found, status %p", name, + debug_printf ("ProfileImagePath for %W not found, status %y", name, status); return NULL; } @@ -280,11 +280,11 @@ load_registry_hive (PCWSTR name) status = NtLoadKey (&key_attr, &path_attr); if (!NT_SUCCESS (status)) { - debug_printf ("Loading user registry hive %S into %S failed: %p", + debug_printf ("Loading user registry hive %S into %S failed: %y", &upath, &ukey, status); return; } - debug_printf ("Loading user registry hive %S into %S SUCCEEDED: %p", + debug_printf ("Loading user registry hive %S into %S SUCCEEDED: %y", &upath, &ukey, status); /* If loading the normal hive worked, try to load the classes hive into the sibling *_Classes subkey, which is what the user is supposed to @@ -300,9 +300,9 @@ load_registry_hive (PCWSTR name) /* Load UsrClass.dat file into key. */ status = NtLoadKey (&key_attr, &path_attr); if (!NT_SUCCESS (status)) - debug_printf ("Loading user classes hive %S into %S failed: %p", + debug_printf ("Loading user classes hive %S into %S failed: %y", &upath, &ukey, status); else - debug_printf ("Loading user classes hive %S into %S SUCCEEDED: %p", + debug_printf ("Loading user classes hive %S into %S SUCCEEDED: %y", &upath, &ukey, status); } |