aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTadeusz Struk <tadeusz.struk@intel.com>2018-09-14 08:54:15 -0700
committerTadeusz Struk <tadeusz.struk@intel.com>2018-09-14 11:19:46 -0700
commit795ea136cbb1f3793b6497a711c4dbcf88d3ca75 (patch)
tree102c84df1ab51b035e508999b25a6855c980060f /test
parentca2fa21bf89a12d5c604e4a9d6d9925e3dba8849 (diff)
downloadtpm2-tss-795ea136cbb1f3793b6497a711c4dbcf88d3ca75.tar.gz
esys: Capitalize esys_free to Esys_Free
This makes it consistent with the rest of the ESYS API. Fixes: #1141 Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com>
Diffstat (limited to 'test')
-rw-r--r--test/unit/esys-crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/esys-crypto.c b/test/unit/esys-crypto.c
index 01439bff..7fcc95a4 100644
--- a/test/unit/esys-crypto.c
+++ b/test/unit/esys-crypto.c
@@ -237,7 +237,7 @@ check_free(void **state)
uint8_t *buffer;
buffer = malloc(10);
- esys_free(buffer);
+ Esys_Free(buffer);
}