changeset 6092:7f96c9d0eef6

Use GNU coding style.
author Bruno Haible <bruno@clisp.org>
date Wed, 24 Aug 2005 11:01:01 +0000
parents f2bbccdb1856
children 3f7f9fe30db3
files tests/test-getpass.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tests/test-getpass.c
+++ b/tests/test-getpass.c
@@ -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;
 }