summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSrivardhan Hebbar <sri.hebbar@samsung.com>2015-10-30 07:15:09 +0100
committerCedric BAIL <cedric@osg.samsung.com>2015-10-31 02:12:06 +0100
commit2a01c4517b5b97c2b988ce590d7dae913ec1f085 (patch)
tree0eb33c942ffe1ea1a8747e19801a4e6d3d47cb0c
parentb9d8426eb7e6067b9c19cb823ec91f0513dc82eb (diff)
downloadefl-2a01c4517b5b97c2b988ce590d7dae913ec1f085.tar.gz
eet: removing useless assignment variables.
Summary: Signed-off-by: Srivardhan Hebbar <sri.hebbar@samsung.com> Reviewers: cedric Differential Revision: https://phab.enlightenment.org/D3231 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
-rw-r--r--src/lib/eet/eet_cipher.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/eet/eet_cipher.c b/src/lib/eet/eet_cipher.c
index 9bff406713..bb854528ab 100644
--- a/src/lib/eet/eet_cipher.c
+++ b/src/lib/eet/eet_cipher.c
@@ -236,9 +236,9 @@ on_error:
# endif /* ifdef HAVE_GNUTLS */
#else
- certificate_file = NULL;
- private_key_file = NULL;
- cb = NULL;
+ void (certificate_file);
+ void (private_key_file);
+ void (cb);
#endif /* ifdef HAVE_SIGNATURE */
return NULL;
}