* dbxout.c (dbxout_type): Fix printf format.
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 20 Jul 2004 15:14:15 +0000 (15:14 +0000)
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 20 Jul 2004 15:14:15 +0000 (15:14 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84955 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/dbxout.c

index 0cac3ad..c1c7e01 100644 (file)
@@ -1,5 +1,7 @@
 2004-07-20  Nathan Sidwell  <nathan@codesourcery.com>
 
+       * dbxout.c (dbxout_type): Fix printf format.
+
        * tree.h (binfo_member): Remove.
        * tree.c (binfo_member): Remove.
 
        * libfuncs.h (LTI_gcov_init, gcov_init_libfunc): Remove.
        * optabs.c (init_optabs): Don't set gcov_init_libfunc.
 
-VERSION_IDENT="CVS-$Name:  $ $Revision: 1.46 $-$Date: 2004/07/08 15:54:45 $-UTC"
 See ChangeLog.11 for earlier changes.
index c888dd0..6a98b32 100644 (file)
@@ -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);
                  }
              }