X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fvar-labs.c;h=3b5aa83821baa2a7c2d216cef17df629fc69312d;hb=d594340cb1ae007a92d094ae67116f9f622f2b5d;hp=7d78027ed78011bb54bb3de332ba512502ac2449;hpb=cd7b08ad5e6bbec75e778acf008f84e1eb548154;p=pspp-builds.git diff --git a/src/var-labs.c b/src/var-labs.c index 7d78027e..3b5aa838 100644 --- a/src/var-labs.c +++ b/src/var-labs.c @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #include #include @@ -27,18 +27,21 @@ #include "str.h" #include "var.h" +#include "gettext.h" +#define _(msgid) gettext (msgid) + #include "debug-print.h" int cmd_variable_labels (void) { - struct variable **v; - int nv; - - int i; - do { + struct variable **v; + size_t nv; + + size_t i; + if (!parse_variables (default_dict, &v, &nv, PV_NONE)) return CMD_PART_SUCCESS_MAYBE;