commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnumach ChangeLog kern/printf.c [gnumach-1-branch]


From: Thomas Schwinge
Subject: gnumach ChangeLog kern/printf.c [gnumach-1-branch]
Date: Fri, 09 Jun 2006 19:08:12 +0000

CVSROOT:        /cvsroot/hurd
Module name:    gnumach
Branch:         gnumach-1-branch
Changes by:     Thomas Schwinge <tschwinge>     06/06/09 19:08:12

Modified files:
        .              : ChangeLog 
        kern           : printf.c 

Log message:
        2006-06-09  Stefan Siegl  <address@hidden>
        
                * kern/printf.c (_doprnt): Support printing of pointer 
addresses.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnumach/ChangeLog?cvsroot=hurd&only_with_tag=gnumach-1-branch&r1=1.128.2.79&r2=1.128.2.80
http://cvs.savannah.gnu.org/viewcvs/gnumach/kern/printf.c?cvsroot=hurd&only_with_tag=gnumach-1-branch&r1=1.2.2.1&r2=1.2.2.2

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/hurd/gnumach/ChangeLog,v
retrieving revision 1.128.2.79
retrieving revision 1.128.2.80
diff -u -b -r1.128.2.79 -r1.128.2.80
--- ChangeLog   14 May 2006 18:39:20 -0000      1.128.2.79
+++ ChangeLog   9 Jun 2006 19:08:11 -0000       1.128.2.80
@@ -1,3 +1,7 @@
+2006-06-09  Stefan Siegl  <address@hidden>
+
+       * kern/printf.c (_doprnt): Support printing of pointer addresses.
+
 2006-05-14  Roland McGrath  <address@hidden>
 
        [sync from HEAD, 2002-06-17]

Index: kern/printf.c
===================================================================
RCS file: /cvsroot/hurd/gnumach/kern/Attic/printf.c,v
retrieving revision 1.2.2.1
retrieving revision 1.2.2.2
diff -u -b -r1.2.2.1 -r1.2.2.2
--- kern/printf.c       5 Dec 2004 14:29:43 -0000       1.2.2.1
+++ kern/printf.c       9 Jun 2006 19:08:12 -0000       1.2.2.2
@@ -50,6 +50,7 @@
  *
  *     %d      decimal conversion
  *     %u      unsigned conversion
+ *     %p      pointer address
  *     %x      hexadecimal conversion
  *     %X      hexadecimal conversion with capital letters
  *     %o      octal conversion
@@ -399,6 +400,7 @@
                    base = 10;
                    goto print_unsigned;
 
+               case 'p':
                case 'x':
                    truncate = _doprnt_truncates;
                case 'X':




reply via email to

[Prev in Thread] Current Thread [Next in Thread]