Remove \n from calls to strace class printfs throughout.

This commit is contained in:
Christopher Faylor
2002-09-30 04:35:18 +00:00
parent da77b2c84c
commit f70389b541
17 changed files with 54 additions and 50 deletions

View File

@ -46,7 +46,7 @@ internal_getlogin (cygheap_user &user)
store it in user.psid */
if (!OpenProcessToken (hMainProc, TOKEN_ADJUST_DEFAULT | TOKEN_QUERY,
&ptok))
system_printf ("OpenProcessToken(): %E\n");
system_printf ("OpenProcessToken(): %E");
else if (!GetTokenInformation (ptok, TokenUser, &tu, sizeof tu, &siz))
system_printf ("GetTokenInformation (TokenUser): %E");
else if (!(ret = user.set_sid (tu)))