X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fformats.c;h=32d638ae4a44f3fd0bed1ad7dd6484c77a4c52ea;hb=92fb12eb06716d14c05b781f5d9dcde956d77c30;hp=e6c85a24e2a92e4b9ef1cb240e3dca625b16321e;hpb=25fae0555073f526e5d5825133a2f62454a7b4c6;p=pspp diff --git a/src/formats.c b/src/formats.c index e6c85a24e2..32d638ae4a 100644 --- a/src/formats.c +++ b/src/formats.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 @@ -28,6 +28,9 @@ #include "str.h" #include "var.h" +#include "gettext.h" +#define _(msgid) gettext (msgid) + #include "debug-print.h" enum @@ -61,7 +64,7 @@ internal_cmd_formats (int which) { /* Variables. */ struct variable **v; - int cv; + size_t cv; /* Format to set the variables to. */ struct fmt_spec f; @@ -70,7 +73,7 @@ internal_cmd_formats (int which) int type; /* Counter. */ - int i; + size_t i; for (;;) {