diff options
| author | 2009-07-15 23:55:58 -0700 | |
|---|---|---|
| committer | 2009-07-15 23:55:58 -0700 | |
| commit | 0d039ba328a59fc81280fbecf68aad2d2cba7234 (patch) | |
| tree | ca74f20463b03d574e27bcabef5150e173f25325 | |
| parent | 8a733e8fa2b2e6c1404ca536da645e897405eb5f (diff) | |
| parent | ef33cddcce43b2ca430aec2d99512e2667e56b13 (diff) | |
Merge change 7508 into donut
* changes:
keystore: Fix a compile warning.
| -rw-r--r-- | cmds/keystore/keystore_get.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/keystore/keystore_get.h b/cmds/keystore/keystore_get.h index a7fd9a556af8..7665e81a314d 100644 --- a/cmds/keystore/keystore_get.h +++ b/cmds/keystore/keystore_get.h @@ -29,7 +29,7 @@ * is returned. Otherwise it returns the value in dynamically allocated memory * and sets the size if the pointer is not NULL. One can release the memory by * calling free(). */ -static char *keystore_get(char *key, int *size) +static char *keystore_get(const char *key, int *size) { char buffer[MAX_KEY_VALUE_LENGTH]; char *value; |