Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-05-02 07:50:11 +0400
committerChristopher Faylor <me@cgf.cx>2005-05-02 07:50:11 +0400
commit05726ddd86c1421add510d5e8395cf7e3ac378f3 (patch)
treee7a339d3b7773fee264eb134e3acfb1ca87877f2 /winsup/cygwin/uinfo.cc
parentb9b1b38358983f564e48ced1a9a599698e1be36f (diff)
white space and minor comment cleanup.
Diffstat (limited to 'winsup/cygwin/uinfo.cc')
-rw-r--r--winsup/cygwin/uinfo.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/uinfo.cc b/winsup/cygwin/uinfo.cc
index 0ee38f791..894132658 100644
--- a/winsup/cygwin/uinfo.cc
+++ b/winsup/cygwin/uinfo.cc
@@ -450,7 +450,7 @@ cygheap_user::env_systemroot (const char *name, size_t namelen)
{
int size = GetWindowsDirectory (NULL, 0);
if (size > 0)
- {
+ {
psystemroot = (char *) cmalloc (HEAP_STR, ++size);
size = GetWindowsDirectory (psystemroot, size);
if (size <= 0)
@@ -460,7 +460,7 @@ cygheap_user::env_systemroot (const char *name, size_t namelen)
}
}
if (size <= 0)
- debug_printf ("GetWindowsDirectory(), %E");
+ debug_printf ("GetWindowsDirectory(), %E");
}
return psystemroot;
}