aboutsummaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2004-07-20 15:14:15 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2004-07-20 15:14:15 +0000
commitbd65c56456f835eb23e7dcb11fac24c18bdf1133 (patch)
tree41ba4bbef85f8ae00cab6c11d9504528b068e3de /gcc/dbxout.c
parenta182b26d35710dc0f4ffae9a878e95143e0b9d9c (diff)
downloadgcc-bd65c56456f835eb23e7dcb11fac24c18bdf1133.zip
gcc-bd65c56456f835eb23e7dcb11fac24c18bdf1133.tar.gz
gcc-bd65c56456f835eb23e7dcb11fac24c18bdf1133.tar.bz2
* dbxout.c (dbxout_type): Fix printf format.
From-SVN: r84955
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r--gcc/dbxout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index c888dd0..6a98b32 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -1690,7 +1690,7 @@ dbxout_type (tree type, int full)
if (BINFO_N_BASE_BINFOS (binfo))
{
have_used_extensions = 1;
- fprintf (asmfile, "!%d,", BINFO_N_BASE_BINFOS (binfo));
+ fprintf (asmfile, "!%u,", BINFO_N_BASE_BINFOS (binfo));
CHARS (8);
}
}