We don't use PRId64, PRIu64, PRIx64, PRIX64, and PRIo64 internally in Wireshark,...
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>
Mon, 31 Aug 2009 18:28:10 +0000 (18:28 -0000)
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>
Mon, 31 Aug 2009 18:28:10 +0000 (18:28 -0000)
svn path=/trunk/; revision=29636

doc/README.developer

index 55f2d41561f05adf6ab14e8eeecbc32afb05b566..f38b0d159e699b8e735c7f0611712eecc8db0fff 100644 (file)
@@ -178,11 +178,6 @@ Wireshark that take format arguments, use G_GINT64_MODIFIER, for example:
                        "Sequence Number: %" G_GINT64_MODIFIER "u",
                        sequence_number);
 
-When using standard C routines, such as printf and scanf, use
-PRId64, PRIu64, PRIx64, PRIX64, and PRIo64; for example:
-
-   printf("Sequence Number: %" PRIu64 "\n", sequence_number);
-
 When specifying an integral constant that doesn't fit in 32 bits, don't
 use "LL" at the end of the constant - not all compilers use "LL" for
 that.  Instead, put the constant in a call to the "G_GINT64_CONSTANT()"