diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 03b5f2183..7251509cd 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2014-12-02 Corinna Vinschen + + * spawn.cc (child_info_spawn::worker): Fix formatting. + 2014-12-02 Corinna Vinschen * sec_auth.cc (str2lsa): Remove. diff --git a/winsup/cygwin/spawn.cc b/winsup/cygwin/spawn.cc index 56f36a3e6..e29ba6a8c 100644 --- a/winsup/cygwin/spawn.cc +++ b/winsup/cygwin/spawn.cc @@ -655,8 +655,8 @@ child_info_spawn::worker (const char *prog_arg, const char *const *argv, make sense in terms of security to create a new window station for every logon of the same user. It just fills up the system with window stations for no good reason. */ - hwst = CreateWindowStationW (::cygheap->user.get_windows_id (sid), 0, - GENERIC_READ | GENERIC_WRITE, sa); + hwst = CreateWindowStationW (::cygheap->user.get_windows_id (sid), + 0, GENERIC_READ | GENERIC_WRITE, sa); if (!hwst) system_printf ("CreateWindowStation failed, %E"); else if (!SetProcessWindowStation (hwst))