]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - aes/aes256_dec.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / aes / aes256_dec.c
index 9bbb016a1714f60a0fef23e1cc636ccdb65b3625..6425eb2eb09e32d4736d5cb7b0ae679862b96905 100644 (file)
@@ -28,7 +28,7 @@
 #include "aes.h"
 #include "aes_dec.h"
 
-void aes256_dec(void* buffer, aes256_ctx_t* ctx){
+void aes256_dec(void *buffer, aes256_ctx_t *ctx){
        aes_decrypt_core(buffer, (aes_genctx_t*)ctx, 14);
 }