]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - aes/aes192_dec.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / aes / aes192_dec.c
index 99cc1b1ae56b2f95b68c631824b44bf6345cc2b8..ce762d075629cd0614e350b1c710e24d8f2ca994 100644 (file)
@@ -28,7 +28,7 @@
 #include "aes.h"
 #include "aes_dec.h"
 
-void aes192_dec(void* buffer, aes192_ctx_t* ctx){
+void aes192_dec(void *buffer, aes192_ctx_t *ctx){
        aes_decrypt_core(buffer, (aes_genctx_t*)ctx, 12);
 }