]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - uart.c
+DES/3DES
[avr-crypto-lib.git] / uart.c
diff --git a/uart.c b/uart.c
index 45338b58861bee49b205eaa99763555f3b5ba8df..68aaac48e006d7ee48bbc3248586e1f42ba45453 100644 (file)
--- a/uart.c
+++ b/uart.c
@@ -132,7 +132,7 @@ void uart_hexdump(void* buf, int len)
                uart_putc(table[((*((char*)buf))>>4)&0xf]);
                uart_putc(table[(*((char*)buf))&0xf]);
                uart_putc(' ');
-               ++buf;
+               buf=(char*)buf+1;
        }
 }