summaryrefslogtreecommitdiffstats
path: root/common/ttyio.c
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2011-02-04 12:57:53 +0100
committerWerner Koch <wk@gnupg.org>2011-02-04 12:57:53 +0100
commitb008274afdbe375b32a7e66dbd073e200f6f0587 (patch)
tree219e239d39cf06be3f03aa82fb572080ac163a15 /common/ttyio.c
parentLet autogen.sh check the git config (diff)
downloadgnupg2-b008274afdbe375b32a7e66dbd073e200f6f0587.tar.xz
gnupg2-b008274afdbe375b32a7e66dbd073e200f6f0587.zip
Nuked almost all trailing white space.post-nuke-of-trailing-ws
We better do this once and for all instead of cluttering all future commits with diffs of trailing white spaces. In the majority of cases blank or single lines are affected and thus this change won't disturb a git blame too much. For future commits the pre-commit scripts checks that this won't happen again.
Diffstat (limited to 'common/ttyio.c')
-rw-r--r--common/ttyio.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/common/ttyio.c b/common/ttyio.c
index 92671f112..fb0fd5e56 100644
--- a/common/ttyio.c
+++ b/common/ttyio.c
@@ -186,7 +186,7 @@ init_ttyfp(void)
if (my_rl_init_stream)
my_rl_init_stream (ttyfp);
#endif
-
+
#ifdef HAVE_TCGETATTR
atexit( cleanup );
@@ -225,7 +225,7 @@ tty_printf( const char *fmt, ... )
va_start( arg_ptr, fmt ) ;
#ifdef USE_W32_CONSOLE
- {
+ {
char *buf = NULL;
int n;
DWORD nwritten;
@@ -233,7 +233,7 @@ tty_printf( const char *fmt, ... )
n = vasprintf(&buf, fmt, arg_ptr);
if( !buf )
log_bug("vasprintf() failed\n");
-
+
if( !WriteConsoleA( con.out, buf, n, &nwritten, NULL ) )
log_fatal("WriteConsole failed: rc=%d", (int)GetLastError() );
if( n != nwritten )
@@ -272,15 +272,15 @@ tty_fprintf (estream_t fp, const char *fmt, ... )
va_start (arg_ptr, fmt);
#ifdef USE_W32_CONSOLE
- {
+ {
char *buf = NULL;
int n;
DWORD nwritten;
-
+
n = vasprintf(&buf, fmt, arg_ptr);
if (!buf)
log_bug("vasprintf() failed\n");
-
+
if (!WriteConsoleA( con.out, buf, n, &nwritten, NULL ))
log_fatal("WriteConsole failed: rc=%d", (int)GetLastError() );
if (n != nwritten)
@@ -545,7 +545,7 @@ tty_get( const char *prompt )
{
char *line;
char *buf;
-
+
if (!initialized)
init_ttyfp();