]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - aes/aes192_enc.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / aes / aes192_enc.c
index 05cb71b3b4f4e0afe98b84fd80f4c5bba3116ecb..6fc7fa3ada32d78cca7babd5a4f0962e0dba304c 100644 (file)
@@ -28,7 +28,7 @@
 #include "aes.h"
 #include "aes_enc.h"
 
-void aes192_enc(void* buffer, aes192_ctx_t* ctx){
+void aes192_enc(void *buffer, aes192_ctx_t *ctx){
        aes_encrypt_core(buffer, (aes_genctx_t*)ctx, 12);
 }