X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_eal%2Fcommon%2Feal_common_hexdump.c;h=d5cbd703f3dadf1b247e9338d24f33b9ba4465fb;hb=a461943208397029b85273b89d4ac30f7c89c3fa;hp=6135133fae47129e8094fb2648d1c3f8ef088261;hpb=add720fce99710cda6a2a7aeba59a9da85ef9a33;p=dpdk.git diff --git a/lib/librte_eal/common/eal_common_hexdump.c b/lib/librte_eal/common/eal_common_hexdump.c index 6135133fae..d5cbd703f3 100644 --- a/lib/librte_eal/common/eal_common_hexdump.c +++ b/lib/librte_eal/common/eal_common_hexdump.c @@ -103,7 +103,7 @@ rte_memdump(FILE *f, const char * title, const void * buf, unsigned int len) line[0] = '\0'; for (i = 0, out = 0; i < len; i++) { - // Make sure we do not overrun the line buffer length. + // Make sure we do not overrun the line buffer length. if ( out >= (LINE_LEN - 4) ) { fprintf(f, "%s", line); out = 0; @@ -118,4 +118,3 @@ rte_memdump(FILE *f, const char * title, const void * buf, unsigned int len) fflush(f); } -