From: Bruno Haible Date: Wed, 24 Aug 2005 11:01:01 +0000 (+0000) Subject: Use GNU coding style. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=626164576ede8aff7a63262a368923c3d2ee678f;p=pspp Use GNU coding style. --- diff --git a/tests/test-getpass.c b/tests/test-getpass.c index 18485d902a..12f08ae78d 100644 --- 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; }