Delete tab_create()'s unused third parameter.
[pspp-builds.git] / src / language / utilities / echo.c
index 05353f81e6ad0e885c33c55fb7fa26a006613ad7..3d3c2c40e73ebde043d0be174f37205e41b3d5f8 100644 (file)
@@ -33,7 +33,7 @@ cmd_echo (struct lexer *lexer, struct dataset *ds UNUSED)
   if (lex_token (lexer) != T_STRING)
     return CMD_FAILURE;
 
-  tab = tab_create(1, 1, 0);
+  tab = tab_create(1, 1);
 
   tab_dim (tab, tab_natural_dimensions, NULL, NULL);
   tab_flags (tab, SOMF_NO_TITLE );