lexer: New function lex_ofs_representation().
[pspp] / src / language / utilities / cd.c
index d28c0a30aa126d4a6b894e2e511a0d3607f21f47..ec5e7646f4ee1bba3fb610d9aa7f45fc7ba1d43c 100644 (file)
@@ -34,15 +34,15 @@ cmd_cd (struct lexer *lexer, struct dataset *ds UNUSED)
 {
   char  *path = 0;
 
-  if ( ! lex_force_string (lexer))
+  if (! lex_force_string (lexer))
     goto error;
 
   path = utf8_to_filename (lex_tokcstr (lexer));
 
-  if ( -1 == chdir (path) )
+  if (-1 == chdir (path))
     {
       int err = errno;
-      msg (SE, _("Cannot change directory to %s:  %s "), path,
+      msg (SE, _("Cannot change directory to %s: %s"), path,
           strerror (err));
       goto error;
     }