eet/cipher: cast unused file properly. 38/77038/1
authorBowon Ryu <bowon.ryu@samsung.com>
Tue, 28 Jun 2016 10:13:29 +0000 (19:13 +0900)
committerBowon Ryu <bowon.ryu@samsung.com>
Tue, 28 Jun 2016 10:13:29 +0000 (19:13 +0900)
This occured a compilation error on window os.
Now it's fixed.

Change-Id: Ib4cac594562f0290a79328c88d2021a51a07dacc

src/lib/eet/eet_cipher.c

index bb85452..a6b3561 100644 (file)
@@ -236,9 +236,9 @@ on_error:
 
 # endif /* ifdef HAVE_GNUTLS */
 #else
-   void (certificate_file);
-   void (private_key_file);
-   void (cb);
+   (void *) (certificate_file);
+   (void *) (private_key_file);
+   (void *) (cb);
 #endif /* ifdef HAVE_SIGNATURE */
    return NULL;
 }