]> git.droids-corp.org - dpdk.git/blobdiff - lib/librte_eal/common/eal_common_hexdump.c
eal: fix whitespace
[dpdk.git] / lib / librte_eal / common / eal_common_hexdump.c
index 6135133fae47129e8094fb2648d1c3f8ef088261..d5cbd703f3dadf1b247e9338d24f33b9ba4465fb 100644 (file)
@@ -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);
 }
-