*** empty log message ***

This commit is contained in:
2007-02-17 15:27:19 +00:00
parent 117e5e7805
commit db6b46b0a9
6 changed files with 37 additions and 28 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: run.c,v 1.327 2007-02-12 03:10:48 bacon Exp $
* $Id: run.c,v 1.328 2007-02-17 15:26:58 bacon Exp $
*
* {License}
*/
@ -6483,6 +6483,8 @@ ase_char_t* ase_awk_format (
ASE_T("%ld"), (long)width
#elif ASE_SIZEOF_INT > 0
ASE_T("%d"), (int)width
#else
#error unsupported size
#endif
);
if (n == -1)

View File

@ -1,5 +1,5 @@
/*
* $Id: val.c,v 1.107 2007-02-03 10:51:14 bacon Exp $
* $Id: val.c,v 1.108 2007-02-17 15:26:58 bacon Exp $
*
* {License}
*/
@ -786,7 +786,7 @@ void ase_awk_dprintval (ase_awk_run_t* run, ase_awk_val_t* val)
__DPRINTF (ASE_T("%d"),
(int)((ase_awk_val_int_t*)val)->val);
#else
#error unsupported integer size
#error unsupported size
#endif
break;