diff --git a/src/modules/sprintf/sprintf.c b/src/modules/sprintf/sprintf.c index 93b4a8fcc49d18702607dbe60f0c966262604e54..bb2955ea1856b38449591ad927ee42fae3ffca27 100644 --- a/src/modules/sprintf/sprintf.c +++ b/src/modules/sprintf/sprintf.c @@ -102,7 +102,7 @@ */ #include "global.h" -RCSID("$Id: sprintf.c,v 1.59 1999/11/01 14:34:24 mirar Exp $"); +RCSID("$Id: sprintf.c,v 1.60 1999/11/01 15:11:09 mirar Exp $"); #include "error.h" #include "array.h" #include "svalue.h" @@ -743,23 +743,23 @@ INLINE static int do_one(struct format_stack *fs, if(sv->type == T_OBJECT && sv->u.object->prog) \ { \ int fun=FIND_LFUN(sv->u.object->prog, LFUN__SPRINTF); \ - if(fun != -1) \ + if (fun != -1) \ { \ int n=0; \ push_int(EXTRACT_PCHARP(a)); \ - if(fs->fsp->precision!=SPRINTF_UNDECIDED) \ + if (fs->fsp->precision!=SPRINTF_UNDECIDED) \ { \ push_constant_text("precision"); \ push_int(fs->fsp->precision); \ n+=2; \ } \ - if(fs->fsp->width!=SPRINTF_UNDECIDED) \ + if (fs->fsp->width!=SPRINTF_UNDECIDED) \ { \ push_constant_text("width"); \ push_int(fs->fsp->width); \ n+=2; \ } \ - if((fs->fsp->flags&FIELD_LEFT)) + if ((fs->fsp->flags&FIELD_LEFT)) \ { \ push_constant_text("flag_left"); \ push_int(1); \