From: Bruno Haible Date: Thu, 20 Oct 2011 14:52:47 +0000 (+0200) Subject: posix_openpt test: Coding style. X-Git-Tag: v0.1~1551 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=9ad470eff9f0d4af8ac1c67881a798c180d4a6df;p=gnulib.git posix_openpt test: Coding style. * tests/test-posix_openpt.c: Use GNU coding style. --- diff --git a/ChangeLog b/ChangeLog index 1d5233a187..fe3c52a8c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-10-20 Bruno Haible + + posix_openpt test: Coding style. + * tests/test-posix_openpt.c: Use GNU coding style. + 2011-10-20 Bruno Haible grantpt: Support --avoid=pt_chown. diff --git a/tests/test-posix_openpt.c b/tests/test-posix_openpt.c index 3ea701e32f..8cd6a41e5d 100644 --- a/tests/test-posix_openpt.c +++ b/tests/test-posix_openpt.c @@ -42,7 +42,7 @@ main (void) char *name; /* Open the master of a pseudo-terminal pair. */ - master = posix_openpt(O_RDWR | O_NOCTTY); + master = posix_openpt (O_RDWR | O_NOCTTY); if (master < 0 && errno == ENOSYS) { fputs ("skipping: platform lacks pty support\n", stderr);