compile fix for amd64

This commit is contained in:
kardel 2007-06-24 19:39:06 +00:00
parent b9ff3c810f
commit db56afd343

View File

@ -1,4 +1,4 @@
/* $NetBSD: save.c,v 1.3 2007/06/24 16:55:13 kardel Exp $ */ /* $NetBSD: save.c,v 1.4 2007/06/24 19:39:06 kardel Exp $ */
/* /*
@ -296,7 +296,7 @@ printEntry(
* THEN the char pointer is really the number * THEN the char pointer is really the number
*/ */
if (OPTST_GET_ARGTYPE(p->fOptState) == OPARG_TYPE_NUMERIC) if (OPTST_GET_ARGTYPE(p->fOptState) == OPARG_TYPE_NUMERIC)
fprintf( fp, " %d\n", (int)(t_word)pzLA ); fprintf( fp, " %ld\n", (long)pzLA );
/* /*
* OTHERWISE, FOR each line of the value text, ... * OTHERWISE, FOR each line of the value text, ...