diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2004-07-20 15:14:15 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2004-07-20 15:14:15 +0000 |
commit | bd65c56456f835eb23e7dcb11fac24c18bdf1133 (patch) | |
tree | 41ba4bbef85f8ae00cab6c11d9504528b068e3de /gcc/dbxout.c | |
parent | a182b26d35710dc0f4ffae9a878e95143e0b9d9c (diff) | |
download | gcc-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.c | 2 |
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); } } |