From 54a2df235d08f661a3122f5b40361258d35014c8 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Mon, 29 Apr 2013 13:40:06 +0200 Subject: [PATCH] list.c Use "long" instead of "int" for command parameters. Commit 4e5a6cc044c6c82e6c4d842bf056579b6bc47d48 used int instead of long for the parameters of the LIST command. This caused compiler warnings and problems on 64 bit machines. This change fixes that. --- src/language/data-io/list.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/language/data-io/list.c b/src/language/data-io/list.c index 4a9424d2f9..e03bd08c12 100644 --- a/src/language/data-io/list.c +++ b/src/language/data-io/list.c @@ -56,9 +56,9 @@ enum numbering struct lst_cmd { - int first; - int last; - int step; + long first; + long last; + long step; const struct variable **v_variables; size_t n_variables; enum numbering numbering; -- 2.30.2