Use GNU coding style.
authorBruno Haible <bruno@clisp.org>
Wed, 24 Aug 2005 11:01:01 +0000 (11:01 +0000)
committerBruno Haible <bruno@clisp.org>
Wed, 24 Aug 2005 11:01:01 +0000 (11:01 +0000)
tests/test-getpass.c

index 18485d902a723011bfc81908d2515bac20d9cb75..12f08ae78dae1f7e2a154d59f1281b7c0a09e46f 100644 (file)
@@ -25,9 +25,9 @@
 
 int main (int argc, char *argv[])
 {
-  char *pass = getpass("Enter password: ");
+  char *pass = getpass ("Enter password: ");
 
-  printf("The password is `%s'\n", pass);
+  printf ("The password is `%s'\n", pass);
 
   return 0;
 }