X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=blobdiff_plain;f=format.c;h=94315e95fee7411b12b2a7d302a9efd5b2cff62e;hp=8b96830291dd044399bbd7ebdcecb471674a62eb;hb=6a302c5863fea16e14ec6a4104e92023d8e2e977;hpb=c77e8ad08e743b3922c58f40cc7b1a063d291d69 diff --git a/format.c b/format.c index 8b96830..94315e9 100644 --- a/format.c +++ b/format.c @@ -20,7 +20,7 @@ enum alignment {ALIGN_LEFT, ALIGN_RIGHT, ALIGN_CENTER}; struct num_format { enum alignment align; char unit; - int supress_unit; + int suppress_unit; }; struct string_format { @@ -129,17 +129,17 @@ static int parse_atom(char *ap, struct atom *atoms, struct format_item **result) case AT_ID: fi->af.nf.align = ALIGN_RIGHT; fi->af.nf.unit = ' '; - fi->af.nf.supress_unit = 0; + fi->af.nf.suppress_unit = 0; break; case AT_COUNT: fi->af.nf.align = ALIGN_RIGHT; fi->af.nf.unit = 'H'; - fi->af.nf.supress_unit = 0; + fi->af.nf.suppress_unit = 0; break; case AT_SIZE: fi->af.nf.align = ALIGN_RIGHT; fi->af.nf.unit = 'h'; - fi->af.nf.supress_unit = 0; + fi->af.nf.suppress_unit = 0; break; } if (!col) @@ -191,7 +191,7 @@ static int parse_atom(char *ap, struct atom *atoms, struct format_item **result) goto err; } if (col[1] == '*') { - fi->af.nf.supress_unit = 1; + fi->af.nf.suppress_unit = 1; col++; } for (j = 0; units[j]; j++) { @@ -375,7 +375,7 @@ static long long unsigned normalize_number(long long unsigned num, char unit, static void get_unit_postfix(struct num_format *nf, char eu, enum atom_type type, char postfix[2]) { - if (nf->supress_unit) { + if (nf->suppress_unit) { *postfix = '\0'; return; }