Whitespace changes only.
[pspp] / src / output / journal.c
index 92fa793be1db62ebaae4575732b6e5e8b5e60401..9cab78805177592a00b0ca92041ab6cf0fc99f92 100644 (file)
@@ -78,7 +78,7 @@ journal_destroy (struct output_driver *driver)
 {
   struct journal_driver *j = journal_driver_cast (driver);
 
-  if ( !j->destroyed)
+  if (!j->destroyed)
     journal_close ();
 
   j->destroyed = true;
@@ -87,7 +87,7 @@ journal_destroy (struct output_driver *driver)
 static void
 journal_output (struct journal_driver *j, const char *s)
 {
-  if ( j->file == NULL)
+  if (j->file == NULL)
     return;
 
   fprintf (j->file, "%s\n", s);