From: Ben Pfaff Date: Fri, 11 Mar 2011 06:44:50 +0000 (-0800) Subject: DELETE VARIABLES: Style fix. X-Git-Tag: v0.7.7~40 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea026a235eb11c9082696d0bb970096ccc6e48f6;hp=1401705a38e494cbd1165396ad17e5eb770161ad;p=pspp-builds.git DELETE VARIABLES: Style fix. --- diff --git a/src/language/dictionary/delete-variables.c b/src/language/dictionary/delete-variables.c index bfb74e84..97c54a81 100644 --- a/src/language/dictionary/delete-variables.c +++ b/src/language/dictionary/delete-variables.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 2006, 2007, 2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -40,8 +40,7 @@ cmd_delete_variables (struct lexer *lexer, struct dataset *ds) msg (SE, _("DELETE VARIABLES may not be used after TEMPORARY. " "Temporary transformations will be made permanent.")); - if (!parse_variables (lexer, dataset_dict (ds), &vars, &var_cnt, - PV_NONE)) + if (!parse_variables (lexer, dataset_dict (ds), &vars, &var_cnt, PV_NONE)) goto error; if (var_cnt == dict_get_var_cnt (dataset_dict (ds))) {