summaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>2004-07-20 15:14:15 +0000
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>2004-07-20 15:14:15 +0000
commit929e4aa0361623fe5a475d22a3508ff3d16a6f33 (patch)
tree41ba4bbef85f8ae00cab6c11d9504528b068e3de /gcc/dbxout.c
parentce7326dabb3e6015665956c5c7453c8ed401c8c1 (diff)
downloadgcc-929e4aa0361623fe5a475d22a3508ff3d16a6f33.tar.gz
* dbxout.c (dbxout_type): Fix printf format.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84955 138bc75d-0d04-0410-961f-82ee72b054a4
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 c888dd08875..6a98b326f3a 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);
}
}