[DWARVES]: Kill some warnings by turning ident variables to int

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2007-12-08 01:56:03 -02:00
parent 27fd61cae4
commit c4ee21aa12
1 changed files with 6 additions and 6 deletions

View File

@ -556,9 +556,9 @@ size_t enumeration__fprintf(const struct tag *tag_self, const struct cu *cu,
size_t printed = fprintf(fp, "enum%s%s {\n",
type__name(self, cu) ? " " : "",
type__name(self, cu) ?: "");
size_t indent = conf->indent;
int indent = conf->indent;
if (indent >= sizeof(tabs))
if (indent >= (int)sizeof(tabs))
indent = sizeof(tabs) - 1;
type__for_each_enumerator(self, pos)
@ -1479,7 +1479,7 @@ static size_t struct_member__fprintf(struct class_member *self,
spacing -= p;
}
if (!sconf.suppress_offset_comment) {
size_t size_spacing = 5;
int size_spacing = 5;
printed += fprintf(fp, "%*s/* %5u",
spacing > 0 ? spacing : 0, " ",
@ -1537,10 +1537,10 @@ static size_t union__fprintf(struct type *self, const struct cu *cu,
{
struct class_member *pos;
size_t printed = 0;
size_t indent = conf->indent;
int indent = conf->indent;
struct conf_fprintf uconf;
if (indent >= sizeof(tabs))
if (indent >= (int)sizeof(tabs))
indent = sizeof(tabs) - 1;
if (conf->prefix != NULL)
@ -2002,7 +2002,7 @@ void cu__account_inline_expansions(struct cu *self)
}
static size_t ftype__fprintf_parms(const struct ftype *self,
const struct cu *cu, size_t indent,
const struct cu *cu, int indent,
FILE *fp)
{
struct parameter *pos;