Commit in reactos/drivers/lib/oskittcp/oskittcp on MAIN | |||
interface.c | +1 | -1 | 1.14 -> 1.15 |
small fix to OskitDumpBuffer() - each line should display the address of it's first byte, not the address of the beginning of the dump...
diff -u -r1.14 -r1.15 --- interface.c 23 Sep 2004 12:36:19 -0000 1.14 +++ interface.c 23 Sep 2004 12:43:49 -0000 1.15 @@ -92,7 +92,7 @@
if ( !align ) { if ( i ) DbgPrint( line );
- snprintf ( line, sizeof(line)-1, "%08x: \n", Data );
+ snprintf ( line, sizeof(line)-1, "%08x: \n", &Data[i] );
line[sizeof(line)-1] = '\0'; }